tsrc/mocks/mock_featmgr.cpp
changeset 78 baacf668fe89
equal deleted inserted replaced
76:cfea66083b62 78:baacf668fe89
       
     1 /** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     2 * All rights reserved.
       
     3 * This component and the accompanying materials are made available
       
     4 * under the terms of the License "Eclipse Public License v1.0"
       
     5 * which accompanies this distribution, and is available
       
     6 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 *
       
     8 * Initial Contributors:
       
     9 * Nokia Corporation - initial contribution.
       
    10 *
       
    11 * Contributors:
       
    12 *
       
    13 * Description:
       
    14 *
       
    15 */
       
    16 #include <smcmockclassincludes.h>
       
    17 #include "featmgr.h"
       
    18 
       
    19 // ============================ MEMBER FUNCTIONS ===============================
       
    20 
       
    21 // -----------------------------------------------------------------------------
       
    22 // FeatureManager::FeatureManager
       
    23 // -----------------------------------------------------------------------------
       
    24 //
       
    25 FeatureManager::FeatureManager(  )
       
    26     {
       
    27     
       
    28     }
       
    29 
       
    30 
       
    31 // -----------------------------------------------------------------------------
       
    32 // FeatureManager::InitializeLibL
       
    33 // -----------------------------------------------------------------------------
       
    34 //
       
    35 void FeatureManager::InitializeLibL(  )
       
    36     {
       
    37     SMC_MOCK_METHOD0( void )
       
    38     }
       
    39 
       
    40 
       
    41 // -----------------------------------------------------------------------------
       
    42 // FeatureManager::UnInitializeLib
       
    43 // -----------------------------------------------------------------------------
       
    44 //
       
    45 void FeatureManager::UnInitializeLib(  )
       
    46     {
       
    47     SMC_MOCK_METHOD0( void )
       
    48     }
       
    49 
       
    50 
       
    51 // -----------------------------------------------------------------------------
       
    52 // FeatureManager::FeatureSupported
       
    53 // -----------------------------------------------------------------------------
       
    54 //
       
    55 TBool FeatureManager::FeatureSupported( 
       
    56         TInt aFeature )
       
    57     {
       
    58     SMC_MOCK_METHOD1( TBool, TInt, aFeature )
       
    59     }
       
    60 
       
    61