taskswitcher/teleportui/hgteleportapp/inc/hgteleportapplication.h
changeset 4 4d54b72983ae
parent 3 fb3763350a08
child 5 c743ef5928ba
equal deleted inserted replaced
3:fb3763350a08 4:4d54b72983ae
     1 /*
       
     2  * ============================================================================
       
     3  *  Name        : hgteleportapplication.h
       
     4  *  Part of     : Hg Teleport
       
     5  *  Description : Application class
       
     6  *  Version     : %version: 4 %
       
     7  *
       
     8  *  Copyright © 2008 Nokia.  All rights reserved.
       
     9  *  This material, including documentation and any related computer
       
    10  *  programs, is protected by copyright controlled by Nokia.  All
       
    11  *  rights are reserved.  Copying, including reproducing, storing,
       
    12  *  adapting or translating, any or all of this material requires the
       
    13  *  prior written consent of Nokia.  This material also contains
       
    14  *  confidential information which may not be disclosed to others
       
    15  *  without the prior written consent of Nokia.
       
    16  * ============================================================================
       
    17  * Template version: 4.2
       
    18  */
       
    19 
       
    20 #ifndef HGTELEPORTAPPLICATION_H
       
    21 #define HGTELEPORTAPPLICATION_H
       
    22 
       
    23 #include <e32base.h> 
       
    24 #include <aknapp.h>
       
    25 
       
    26 class CHgTeleportApplication : public CAknApplication
       
    27     {
       
    28 public:
       
    29     // from CAknApplication
       
    30     /**
       
    31      * Returns the application DLL UID value
       
    32      *
       
    33      * @since S60 v5.0
       
    34      * @return the UID of this Application/Dll
       
    35      */
       
    36     TUid AppDllUid( ) const;
       
    37 
       
    38 protected:
       
    39     // from CAknApplication
       
    40     /**
       
    41      * Create a CApaDocument object and return a pointer to it
       
    42      *
       
    43      * @since S60 v5.0
       
    44      * a pointer to the created document
       
    45      */
       
    46     CApaDocument* CreateDocumentL( );
       
    47     };
       
    48 
       
    49 #endif // HGTELEPORTAPPLICATION_H