telephonyserverplugins/common_tsy/featmgrstub/inc/featmgr.h
changeset 0 3553901f7fa8
child 24 6638e7f4bd8f
equal deleted inserted replaced
-1:000000000000 0:3553901f7fa8
       
     1 /*
       
     2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     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".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef FEATMGR_H
       
    21 #define FEATMGR_H
       
    22 
       
    23 #include <e32std.h>
       
    24 #include <e32svr.h>
       
    25 
       
    26 class CFeatMgrTlsData;
       
    27 
       
    28 class FeatureManager
       
    29     {
       
    30     public: 
       
    31         IMPORT_C static void InitializeLibL();
       
    32         IMPORT_C static void UnInitializeLib();
       
    33         IMPORT_C static TBool FeatureSupported( TInt aFeature );
       
    34     
       
    35 	private: 
       
    36         static CFeatMgrTlsData* TlsData();
       
    37 
       
    38     private:
       
    39         FeatureManager();      
       
    40     };
       
    41 
       
    42 #endif