browserui/operatormenu/inc/OperatorMenuApp.h
branchRCL_3
changeset 48 8e6fa1719340
parent 0 84ad3b177aa3
equal deleted inserted replaced
47:6385c4c93049 48:8e6fa1719340
       
     1 /*
       
     2 * Copyright (c) 2003 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 the License "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:  Header file for COperatorMenuApp
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef OPERATORMENUAPP_H
       
    20 #define OPERATORMENUAPP_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <aknapp.h>
       
    24 
       
    25 // CONSTANTS
       
    26 // UID of the application
       
    27 const TUid KUidOperatorMenu = { 0x10008D5E };
       
    28 
       
    29 // CLASS DECLARATION
       
    30 
       
    31 /**
       
    32 * COperatorMenuApp application class.
       
    33 * Provides factory to create concrete document object.
       
    34 * 
       
    35 */
       
    36 class COperatorMenuApp : public CAknApplication
       
    37     {
       
    38  
       
    39     private: //From base class
       
    40 
       
    41         /**
       
    42         * From CApaApplication, creates COperatorMenuDocument document object.
       
    43         * @return A pointer to the created document object.
       
    44         */
       
    45         CApaDocument* CreateDocumentL();
       
    46         
       
    47         /**
       
    48         * From CApaApplication, returns application's UID (KUidOperatorMenu).
       
    49         * @return The value of KUidOperatorMenu.
       
    50         */
       
    51         TUid AppDllUid() const;
       
    52     };
       
    53     
       
    54 #endif
       
    55 
       
    56 // End of File
       
    57