extras/calcsoft/inc/CalcApp.h
branchRCL_3
changeset 21 10c6e6d6e4d9
parent 0 3ee3dfdd8d69
equal deleted inserted replaced
20:41b775cdc0c8 21:10c6e6d6e4d9
       
     1 /*
       
     2 * Copyright (c) 2002 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:  An application class, CCalcApplication, 
       
    15 *                derived from CEikApplication
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef     CALCAPP_H
       
    21 #define     CALCAPP_H
       
    22 
       
    23 
       
    24 //  INCLUDES
       
    25 #include <aknapp.h>
       
    26 
       
    27 // UID of app
       
    28 const   TUid    KUidCalc = { 0x10005902 };
       
    29 
       
    30 //  FORWARD DECLARATIONS
       
    31 class CApaDocument;
       
    32 
       
    33 
       
    34 //  CLASS DEFINITIONS 
       
    35 
       
    36 /**
       
    37 CCalcApplication : Application class
       
    38 */
       
    39 
       
    40 class   CCalcApplication
       
    41         :public CAknApplication
       
    42     {
       
    43     private: // Functions from base classes 
       
    44         /**
       
    45         * From CApaApplication, Create CApaDocument object   
       
    46         * @return Pointer of document class.
       
    47         */
       
    48         CApaDocument* CreateDocumentL(); 
       
    49         
       
    50         /**
       
    51         * From CApaApplication, return Uid of Calculator application 
       
    52         * @return Uid of Calculator application 
       
    53         */
       
    54         TUid AppDllUid() const; 
       
    55     };
       
    56 
       
    57 #endif      //  CALCAPP_H   
       
    58             
       
    59 // End of File
       
    60