extras/about/inc/AboutApp.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:  Declares main application class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef ABOUTAPP_H
       
    20 #define ABOUTAPP_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <aknapp.h>
       
    24 
       
    25 // CONSTANTS
       
    26 // UID of the application
       
    27 const TUid KUidabout = { 0x10005A22 };
       
    28 
       
    29 // CLASS DECLARATION
       
    30 
       
    31 /**
       
    32 * CAboutApp application class.
       
    33 * Provides factory to create concrete document object.
       
    34 * 
       
    35 */
       
    36 class CAboutApp : public CAknApplication
       
    37     {
       
    38     
       
    39     public: // Functions from base classes
       
    40     private:
       
    41 
       
    42         /**
       
    43         * From CApaApplication, creates CAboutDocument document object.
       
    44         * @return A pointer to the created document object.
       
    45         */
       
    46         CApaDocument* CreateDocumentL();
       
    47         
       
    48         /**
       
    49         * From CApaApplication, returns application's UID (KUidabout).
       
    50         * @return The value of KUidabout.
       
    51         */
       
    52         TUid AppDllUid() const;
       
    53     };
       
    54 
       
    55 #endif
       
    56 
       
    57 // End of File
       
    58