stifui/avkon/stifui/inc/AppUIApp.h
branchRCL_3
changeset 9 404ad6c9bc20
child 17 d40e813b23c0
equal deleted inserted replaced
8:87e9ebfbe96a 9:404ad6c9bc20
       
     1 /*
       
     2 * Copyright (c) 2009 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: This file contains CAppUIApp class declaration.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef APPUIAPP_H
       
    19 #define APPUIAPP_H
       
    20 
       
    21 // INCLUDES
       
    22 #include <aknapp.h>
       
    23 
       
    24 // CONSTANTS
       
    25 // UID of the application
       
    26 const TUid KUidAppUI = { 0x1028311D };
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 * CAppUIApp application class.
       
    32 * Provides factory to create concrete document object.
       
    33 * 
       
    34 */
       
    35 class CAppUIApp : public CAknApplication
       
    36     {
       
    37     
       
    38     public: // Functions from base classes
       
    39     private:
       
    40 
       
    41         /**
       
    42         * From CApaApplication, creates CAppUIDocument document object.
       
    43         * @return A pointer to the created document object.
       
    44         */
       
    45         CApaDocument* CreateDocumentL();
       
    46         
       
    47         /**
       
    48         * From CApaApplication, returns application's UID (KUidAppUI).
       
    49         * @return The value of KUidAppUI.
       
    50         */
       
    51         TUid AppDllUid() const;
       
    52     };
       
    53 
       
    54 #endif
       
    55 
       
    56 // End of File
       
    57 
       
    58 // End of File