gsprofilesrv_plat/settings_plugin_api/tsrc/SettingsPluginApiTest/inc/TestGSPlugin.h
branchRCL_3
changeset 54 7e0eff37aedb
parent 0 8c5d936e5675
equal deleted inserted replaced
53:8ee96d21d9bf 54:7e0eff37aedb
       
     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 #ifndef TESTGSPLUGIN_H
       
    18 #define TESTGSPLUGIN_H
       
    19 
       
    20 // INCLUDES
       
    21 #include    <GSParentPlugin.h>
       
    22 
       
    23 
       
    24 
       
    25 // CLASS DECLARATION
       
    26 
       
    27 class CTestGSPlugin : public CGSParentPlugin
       
    28     {
       
    29     public:     // Constructors and destructors
       
    30 
       
    31         /**
       
    32          * Two phase construction
       
    33          */
       
    34         static CTestGSPlugin* NewL();
       
    35         static CTestGSPlugin* NewLC();
       
    36         /**
       
    37          * Destructor
       
    38          */
       
    39         ~CTestGSPlugin();
       
    40 
       
    41         
       
    42     public:
       
    43     
       
    44     	void GetCaptionL( TDes& aCaption ) const;
       
    45     	
       
    46     	TUid Id() const;
       
    47     	
       
    48     private:    // Constructors and destructors
       
    49 
       
    50         CTestGSPlugin();
       
    51         void ConstructL();
       
    52 
       
    53     };
       
    54 
       
    55 #endif // TESTGSPLUGIN_H
       
    56 // End of File