taskswitcher/testapplications/generator/generator/common/inc/helloworldbasicapplication.h
changeset 117 c63ee96dbe5f
equal deleted inserted replaced
115:3ab5c078b490 117:c63ee96dbe5f
       
     1 /*
       
     2 * ==============================================================================
       
     3 *  Name        : helloworldbasicapplication.h
       
     4 *  Part of     : Helloworldbasic
       
     5 *  Interface   : 
       
     6 *  Description : 
       
     7 *  Version     : 
       
     8 *
       
     9 *  Copyright (c) 2005-2006 Nokia Corporation.
       
    10 *  This material, including documentation and any related 
       
    11 *  computer programs, is protected by copyright controlled by 
       
    12 *  Nokia Corporation.
       
    13 * ==============================================================================
       
    14 */
       
    15 
       
    16 #ifndef __HELLOWORLDBASICAPPLICATION_H__
       
    17 #define __HELLOWORLDBASICAPPLICATION_H__
       
    18 
       
    19 // INCLUDES
       
    20 #include <aknapp.h>
       
    21 
       
    22 // CLASS DECLARATION
       
    23 
       
    24 /**
       
    25 * CHelloWorldBasicApplication application class.
       
    26 * Provides factory to create concrete document object.
       
    27 * An instance of CHelloWorldBasicApplication is the application part of the
       
    28 * AVKON application framework for the HelloWorldBasic example application.
       
    29 */
       
    30 class CHelloWorldBasicApplication : public CAknApplication
       
    31     {
       
    32     public: // Functions from base classes
       
    33 
       
    34         /**
       
    35         * From CApaApplication, AppDllUid.
       
    36         * @return Application's UID (KUidHelloWorldBasicApp).
       
    37         */
       
    38         TUid AppDllUid() const;
       
    39 
       
    40     protected: // Functions from base classes
       
    41 
       
    42         /**
       
    43         * From CApaApplication, CreateDocumentL.
       
    44         * Creates CHelloWorldBasicDocument document object. The returned
       
    45         * pointer in not owned by the CHelloWorldBasicApplication object.
       
    46         * @return A pointer to the created document object.
       
    47         */
       
    48         CApaDocument* CreateDocumentL();
       
    49     };
       
    50 
       
    51 #endif // __HELLOWORLDBASICAPPLICATION_H__
       
    52 
       
    53 // End of File
       
    54