ipsservices/ipssossettings/tsrc/IpsSosTestApp/inc/TESTAPPApp.h
changeset 2 5253a20d2a1e
child 3 a4d6f1ea0416
equal deleted inserted replaced
1:12c456ceeff2 2:5253a20d2a1e
       
     1 /*
       
     2 * ============================================================================
       
     3 *  Name     : CTestAppApp from TestAppApp.h
       
     4 *  Part of  : TestApp
       
     5 * ============================================================================
       
     6 */
       
     7 
       
     8 #ifndef TestAppAPP_H
       
     9 #define TestAppAPP_H
       
    10 
       
    11 // INCLUDES
       
    12 #include <aknapp.h>
       
    13 
       
    14 // CONSTANTS
       
    15 // UID of the application
       
    16 // <cmail> S60 UID update
       
    17 const TUid KUidTestApp = { 0x2001FE0F };
       
    18 // </cmail> S60 UID update
       
    19 
       
    20 // CLASS DECLARATION
       
    21 
       
    22 /**
       
    23 * CTestAppApp application class.
       
    24 * Provides factory to create concrete document object.
       
    25 *
       
    26 */
       
    27 class CTestAppApp : public CAknApplication
       
    28     {
       
    29 
       
    30     public: // Functions from base classes
       
    31     private:
       
    32 
       
    33         /**
       
    34         * From CApaApplication, creates CTestAppDocument document object.
       
    35         * @return A pointer to the created document object.
       
    36         */
       
    37         CApaDocument* CreateDocumentL();
       
    38 
       
    39         /**
       
    40         * From CApaApplication, returns application's UID (KUidTestApp).
       
    41         * @return The value of KUidTestApp.
       
    42         */
       
    43         TUid AppDllUid() const;
       
    44     };
       
    45 
       
    46 #endif
       
    47 
       
    48 // End of File
       
    49