gssettingsuis/Gs/GSApplication/Inc/GSApp.h
branchRCL_3
changeset 24 8ee96d21d9bf
parent 23 8bda91a87a00
child 25 7e0eff37aedb
equal deleted inserted replaced
23:8bda91a87a00 24:8ee96d21d9bf
     1 /*
       
     2 * Copyright (c) 2002-2005 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 *     CGSApp is an application class required by Symbian OS architecture.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef GSAPP_H
       
    21 #define GSAPP_H
       
    22 
       
    23 // INCLUDES
       
    24 #include <aknapp.h>
       
    25 #include <e32std.h>
       
    26 
       
    27 
       
    28 // CONSTANTS
       
    29 
       
    30 // CLASS DECLARATION
       
    31 
       
    32 /**
       
    33 * CGSApp application class.
       
    34 * @since Series60_3.1
       
    35 */
       
    36 class CGSApp : public CAknApplication
       
    37 {
       
    38     private: // from CApaApplication
       
    39 
       
    40         /**
       
    41         * Create CGSDocument document object.
       
    42         */
       
    43         CApaDocument* CreateDocumentL();
       
    44 
       
    45         /**
       
    46         * Returns application UID.
       
    47         * @return KUidGS.
       
    48         */
       
    49         TUid AppDllUid() const;
       
    50 };
       
    51 
       
    52 
       
    53 #endif // GSAPP_H
       
    54 // End of File