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.
28 // FORWARD DECLARATIONS
29 class CFeatMgrTlsData;
39 Feature manager API offers the following functionality:
40 - Inquire whether a certain static feature is supported.
41 For usage, see example code at the end of the header file.
44 @deprecated Use the class CFeatureDiscovery for basic feature queries, or the
45 class RFeatureControl for advanced feature queries and control.
52 This must be called in the scope of the thread before calling
53 any other methods. It sets up TLS. Uninitialization is done
54 by calling the UnInitializeLib() function.
56 @leave KErrNoMemory Memory allocation failure.
58 @deprecated Use the class CFeatureDiscovery for basic feature queries, or the
59 class RFeatureControl for advanced feature queries and control.
61 IMPORT_C static void InitializeLibL();
64 This must be called in the scope of the thread after calling
65 InitializeLibL(). It frees the allocated TLS. Do not call UnInitializeLib()
66 if InitalizeLibL() leaves.
68 @deprecated Use the class CFeatureDiscovery for basic feature queries, or the
69 class RFeatureControl for advanced feature queries and control.
71 IMPORT_C static void UnInitializeLib();
74 Fetches information whether a certain feature is supported.
76 @param aFeature feature id.
77 @return feature support status.
79 @deprecated Use the class CFeatureDiscovery for basic feature queries, or the
80 class RFeatureControl for advanced feature queries and control.
82 IMPORT_C static TBool FeatureSupported(TInt aFeature);
89 @return object stored in TLS
91 static CFeatMgrTlsData* TlsData();
96 C++ default constructor.
97 Prohibits instantiation of this class.
108 // replace <featureUID> with a real UID
110 #include <featmgr/featmgr.h>
111 #include <bldvariant.hrh> // for feature definitions
113 CMyClass::ConstructL()
115 // Sets up TLS, must be done before FeatureManager is used.
116 FeatureManager::InitializeLibL();
117 // Used in destructor.
118 iFeatMgrInitialized = ETrue;
121 CMyClass::ShowMenuL()
123 if ( FeatureManager::FeatureSupported( <featureUID> ) )
125 // Feature supported, show menu item associated with it.
129 CMyClass::~CMyClass()
131 // Do not call UnInitializeLib() if InitalizeLib() leaves.
132 if ( iFeatMgrInitialized )
134 // Frees the TLS. Must be done after FeatureManager is used.
135 FeatureManager::UnInitializeLib();