gsprofilesrv_plat/settings_plugin_api/tsrc/SettingsPluginApiTest/src/TestGSPlugin.cpp
branchRCL_3
changeset 24 8ee96d21d9bf
parent 23 8bda91a87a00
child 25 7e0eff37aedb
equal deleted inserted replaced
23:8bda91a87a00 24:8ee96d21d9bf
     1 /*
       
     2 * Copyright (c) 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 #include "TestGSPlugin.h"
       
    18 
       
    19 
       
    20 	
       
    21 // CONSTRUCTION
       
    22 CTestGSPlugin* CTestGSPlugin::NewL()
       
    23     {
       
    24     CTestGSPlugin* self = CTestGSPlugin::NewLC();
       
    25     CleanupStack::Pop();
       
    26 
       
    27     return self;
       
    28     }
       
    29 
       
    30 CTestGSPlugin* CTestGSPlugin::NewLC()
       
    31     {
       
    32     CTestGSPlugin* self = new( ELeave ) CTestGSPlugin();
       
    33     CleanupStack::PushL( self );
       
    34 
       
    35     self->ConstructL();
       
    36 
       
    37     return self;
       
    38     }
       
    39 
       
    40 // Destructor 
       
    41 CTestGSPlugin::~CTestGSPlugin()
       
    42     {
       
    43     }
       
    44 
       
    45 // Default constructor
       
    46 CTestGSPlugin::CTestGSPlugin()
       
    47     {
       
    48     }
       
    49 
       
    50 // Second phase construct
       
    51 void CTestGSPlugin::ConstructL()
       
    52     {
       
    53     }
       
    54 
       
    55 
       
    56 void CTestGSPlugin::GetCaptionL( TDes& /*aCaption*/ ) const
       
    57 	{
       
    58 	
       
    59 	}
       
    60 
       
    61 TUid CTestGSPlugin::Id() const
       
    62 	{
       
    63 	return KNullUid;
       
    64 	}
       
    65 	
       
    66 //  END OF FILE