codhandler/roapapp/inc/RoapApp.h
changeset 0 dd21522fd290
child 48 79859ed3eea9
equal deleted inserted replaced
-1:000000000000 0:dd21522fd290
       
     1 /*
       
     2 * Copyright (c) 2004 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 the License "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 *      Declaration of class CRoapApp.   
       
    16 *      
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef ROAP_APP_H
       
    22 #define ROAP_APP_H
       
    23 
       
    24 // INCLUDES
       
    25 
       
    26 #include <e32base.h>
       
    27 #include <AknApp.h>
       
    28 
       
    29 // CLASS DECLARATION
       
    30 
       
    31 /**
       
    32 * ROAP Application.
       
    33 */
       
    34 class CRoapApp: public CAknApplication
       
    35     {
       
    36     
       
    37     private:    // from CAknApplication (CApaApplication)
       
    38 
       
    39         /**
       
    40         * Create document object.
       
    41         * @return A pointer to the created document object.
       
    42         */
       
    43         CApaDocument* CreateDocumentL();
       
    44         
       
    45         /**
       
    46         * Return application's UID.
       
    47         * @return Application UID.
       
    48         */
       
    49         TUid AppDllUid() const;
       
    50     };
       
    51 
       
    52 #endif /* def ROAP_APP_H */