creator/inc/creator_app.h
branchRCL_3
changeset 21 b3cee849fa46
parent 20 48060abbbeaf
child 22 fad26422216a
equal deleted inserted replaced
20:48060abbbeaf 21:b3cee849fa46
     1 /*
       
     2 * Copyright (c) 2008 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:  
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef __CREATOR_APPLICATION_H__
       
    22 #define __CREATOR_APPLICATION_H__
       
    23 
       
    24 #include <aknapp.h>
       
    25 
       
    26 static const TUid KUidCreatorApp = {0x20011383}; 
       
    27 
       
    28 /*! 
       
    29   @class CCreatorApplication
       
    30   
       
    31   @discussion An instance of CCreatorApplication is the application part of the AVKON
       
    32   application framework for the Creator example application
       
    33   */
       
    34 class CCreatorApplication : public CAknApplication
       
    35     {
       
    36 public:  // from CApaApplication
       
    37 
       
    38 /*! 
       
    39   @function AppDllUid
       
    40   
       
    41   @discussion Returns the application DLL UID value
       
    42   @result the UID of this Application/Dll
       
    43   */
       
    44     TUid AppDllUid() const;
       
    45 
       
    46 protected: // from CEikApplication
       
    47 /*! 
       
    48   @function CreateDocumentL
       
    49   
       
    50   @discussion Create a CApaDocument object and return a pointer to it
       
    51   @result a pointer to the created document
       
    52   */
       
    53     CApaDocument* CreateDocumentL();
       
    54     };
       
    55 
       
    56 #endif // __CREATOR_APPLICATION_H__