Update contrib.
2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
20 #ifndef FEATMGRFEATUREENTRY_H
21 #define FEATMGRFEATUREENTRY_H
24 #include <featmgr/featurecmn.h>
31 An enumeration for accessing internal feature status flags bits 24..31 used
32 inside the server. See TFeatureFlags in published header featurecmn.h for the
33 flag definitions 0..23.
39 enum TFeatureFlagsServer
41 // Do not define flags here for values 0..23. See TFeatureFlags enum.
43 /** If set, the feature flag is a Runtime feature flag (created at run time).
44 if not set means source of feature flag is ROM or plug-in */
47 // Reserved flags, these are not currently used in the server
48 EFeatureFlagUnused25 = 25,
49 EFeatureFlagUnused26 = 26,
50 EFeatureFlagUnused27 = 27,
51 EFeatureFlagUnused28 = 28,
52 EFeatureFlagUnused29 = 29,
53 EFeatureFlagUnused30 = 30,
54 EFeatureFlagUnused31 = 31
59 // @see corresponding client side class TFeatureEntry
61 class TFeatureServerEntry
68 TFeatureServerEntry();
69 TFeatureServerEntry( TUid aFeature );
70 TFeatureServerEntry( TUid aFeature, TBitFlags32 aFlags, TUint32 aData );
71 TFeatureServerEntry( TFeatureEntry& aEntry );
74 * Returns feature status flags.
76 TBitFlags32 FeatureFlags() const;
79 * Returns feature data.
81 TUint32 FeatureData() const;
84 * Returns feature UID.
86 TUid FeatureUid() const;
89 * Internalize object from stream
91 void InternalizeL( RReadStream& aStream );
94 * Externalize object from stream
96 void ExternalizeL( RWriteStream& aStream ) const;
99 *This sets a feature's flags and data
101 void inline Set( TFeatureServerEntry aEntry)
103 iFlags = aEntry.FeatureFlags();
104 iData = aEntry.FeatureData();
108 *This sets a feature's flags and data
110 void inline Set(TBitFlags32 aFlags, TUint32 aData)
118 /** UID of the feature. */
121 /** Value of the feature status flags.
123 @see TFeatureFlagsServer */
126 /** Data associated with feature. */
131 * Defines TFeatureEntry array.
133 typedef RArray<TFeatureServerEntry> RFeatureServerArray;
135 #endif // FEATMGRFEATUREENTRY_H