srsf/vcexecutorapp/inc/vcexecutorapp.h
branchRCL_3
changeset 18 cad71a31b7fc
parent 17 8ce15fced3a6
child 19 e36f3802f733
equal deleted inserted replaced
17:8ce15fced3a6 18:cad71a31b7fc
     1 /*
       
     2 * Copyright (c) 2006 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:  Application class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef VCEXECUTORAPP_H
       
    20 #define VCEXECUTORAPP_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <aknapp.h>
       
    24 
       
    25 // CONSTANTS
       
    26 
       
    27 // UID of the application
       
    28 const TUid KUidVcExecutorApp = { 0x10281D15 };
       
    29 
       
    30 
       
    31 // CLASS DECLARATION
       
    32 
       
    33 /**
       
    34 * CVCExecutorApp application class.
       
    35 * Provides factory to create concrete document object.
       
    36 * 
       
    37 */
       
    38 class CVCExecutorApp : public CAknApplication
       
    39     {
       
    40     
       
    41     private: // Functions from base classes
       
    42 
       
    43         /**
       
    44         * From CApaApplication
       
    45         * @return A pointer to the created document object.
       
    46         */
       
    47         CApaDocument* CreateDocumentL();
       
    48         
       
    49         /**
       
    50         * From CApaApplication, returns application's UID.
       
    51         * @return The value of KUidVcManager.
       
    52         */
       
    53         TUid AppDllUid() const;
       
    54     };
       
    55 
       
    56 #endif // VCEXECUTORAPP_H
       
    57 
       
    58 // End of file