sl@0: /* sl@0: * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: #ifndef FEATMGRFEATUREENTRY_H sl@0: #define FEATMGRFEATUREENTRY_H sl@0: sl@0: #include sl@0: #include sl@0: sl@0: class RReadStream; sl@0: class RWriteStream; sl@0: sl@0: sl@0: /** sl@0: An enumeration for accessing internal feature status flags bits 24..31 used sl@0: inside the server. See TFeatureFlags in published header featurecmn.h for the sl@0: flag definitions 0..23. sl@0: sl@0: @see TFeatureFlags sl@0: @see TBitFlagsT sl@0: @internalComponent sl@0: */ sl@0: enum TFeatureFlagsServer sl@0: { sl@0: // Do not define flags here for values 0..23. See TFeatureFlags enum. sl@0: sl@0: /** If set, the feature flag is a Runtime feature flag (created at run time). sl@0: if not set means source of feature flag is ROM or plug-in */ sl@0: EFeatureRuntime = 24, sl@0: sl@0: // Reserved flags, these are not currently used in the server sl@0: EFeatureFlagUnused25 = 25, sl@0: EFeatureFlagUnused26 = 26, sl@0: EFeatureFlagUnused27 = 27, sl@0: EFeatureFlagUnused28 = 28, sl@0: EFeatureFlagUnused29 = 29, sl@0: EFeatureFlagUnused30 = 30, sl@0: EFeatureFlagUnused31 = 31 sl@0: }; sl@0: sl@0: sl@0: // CLASS DECLARATION sl@0: // @see corresponding client side class TFeatureEntry sl@0: sl@0: class TFeatureServerEntry sl@0: { sl@0: public: sl@0: sl@0: /** sl@0: * Constructors. sl@0: */ sl@0: TFeatureServerEntry(); sl@0: TFeatureServerEntry( TUid aFeature ); sl@0: TFeatureServerEntry( TUid aFeature, TBitFlags32 aFlags, TUint32 aData ); sl@0: TFeatureServerEntry( TFeatureEntry& aEntry ); sl@0: sl@0: /** sl@0: * Returns feature status flags. sl@0: */ sl@0: TBitFlags32 FeatureFlags() const; sl@0: sl@0: /** sl@0: * Returns feature data. sl@0: */ sl@0: TUint32 FeatureData() const; sl@0: sl@0: /** sl@0: * Returns feature UID. sl@0: */ sl@0: TUid FeatureUid() const; sl@0: sl@0: /** sl@0: * Internalize object from stream sl@0: */ sl@0: void InternalizeL( RReadStream& aStream ); sl@0: sl@0: /** sl@0: * Externalize object from stream sl@0: */ sl@0: void ExternalizeL( RWriteStream& aStream ) const; sl@0: sl@0: /** sl@0: *This sets a feature's flags and data sl@0: */ sl@0: void inline Set( TFeatureServerEntry aEntry) sl@0: { sl@0: iFlags = aEntry.FeatureFlags(); sl@0: iData = aEntry.FeatureData(); sl@0: } sl@0: sl@0: /** sl@0: *This sets a feature's flags and data sl@0: */ sl@0: void inline Set(TBitFlags32 aFlags, TUint32 aData) sl@0: { sl@0: iFlags = aFlags; sl@0: iData = aData; sl@0: } sl@0: sl@0: private: sl@0: sl@0: /** UID of the feature. */ sl@0: TUid iFeatureID; sl@0: sl@0: /** Value of the feature status flags. sl@0: @see TFeatureFlags sl@0: @see TFeatureFlagsServer */ sl@0: TBitFlags32 iFlags; sl@0: sl@0: /** Data associated with feature. */ sl@0: TUint32 iData; sl@0: }; sl@0: sl@0: /** sl@0: * Defines TFeatureEntry array. sl@0: */ sl@0: typedef RArray RFeatureServerArray; sl@0: sl@0: #endif // FEATMGRFEATUREENTRY_H sl@0: sl@0: // End of File