taskswitcher/teleportui/hgteleportapp/src/hgteleportapplication.cpp
changeset 4 4d54b72983ae
parent 3 fb3763350a08
child 5 c743ef5928ba
equal deleted inserted replaced
3:fb3763350a08 4:4d54b72983ae
     1 /*
       
     2  * ============================================================================
       
     3  *  Name        : hgteleportapplication.cpp
       
     4  *  Part of     : Hg Teleport
       
     5  *  Description : Application class
       
     6  *  Version     : %version: 5 %
       
     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  * 
       
    18  */
       
    19 
       
    20 #include "hgteleportdocument.h"
       
    21 #include "hgteleportapplication.h"
       
    22 #include "hgteleportuid.hrh"
       
    23 
       
    24 // UID for the application, this should correspond
       
    25 // to the uid defined in the mmp file
       
    26 static const TUid KUidHgTeleportApp = { KHgTeleportAppUidValue };
       
    27 
       
    28 // -----------------------------------------------------------------------------
       
    29 // CHgTeleportApplication::CreateDocumentL( )
       
    30 // Create a CApaDocument object and return a pointer to it
       
    31 // -----------------------------------------------------------------------------
       
    32 //
       
    33 CApaDocument* CHgTeleportApplication::CreateDocumentL( )
       
    34     {
       
    35     CApaDocument* document = CHgTeleportDocument::NewL( *this );
       
    36     return document;
       
    37     }
       
    38 
       
    39 // -----------------------------------------------------------------------------
       
    40 // CHgTeleportApplication::AppDllUid( )
       
    41 // Returns the application DLL UID value
       
    42 // -----------------------------------------------------------------------------
       
    43 //
       
    44 TUid CHgTeleportApplication::AppDllUid( ) const
       
    45     {
       
    46     // Return the UID for the hgteleport application
       
    47     return KUidHgTeleportApp;
       
    48     }
       
    49 
       
    50 
       
    51 // end of file