uifw/AvKon/tsrc/bc/S60_SDK3.0/bctestcmdlg/inc/bctestcmdlgapp.h
changeset 22 75713bee6484
parent 21 558113899881
child 26 62ef28f7b435
child 28 d33307312dfe
equal deleted inserted replaced
21:558113899881 22:75713bee6484
     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 BCTESTCMDLGAPP_H
       
    20 #define BCTESTCMDLGAPP_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <aknapp.h>
       
    24 
       
    25 // CONSTANTS
       
    26 const TUid KUidBCTestCmDlg = { 0x2000475D }; // UID of the application.
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 * CBCTestCmDlgApp application class.
       
    32 * Provides factory to create concrete document object.
       
    33 */
       
    34 class CBCTestCmDlgApp : public CAknApplication
       
    35     {
       
    36     private: // From CApaApplication
       
    37 
       
    38         /**
       
    39         * From CApaApplication, CreateDocumentL.
       
    40         * Creates CBCTestCmDlgDocument document object.
       
    41         * @return A pointer to the created document object.
       
    42         */
       
    43         CApaDocument* CreateDocumentL();
       
    44 
       
    45         /**
       
    46         * From CApaApplication, AppDllUid.
       
    47         * Returns application's UID ( KUidBCTestCmDlg ).
       
    48         * @return The value of KUidBCTestCmDlg.
       
    49         */
       
    50         TUid AppDllUid() const;
       
    51 
       
    52     };
       
    53 
       
    54 #endif
       
    55 
       
    56 // End of File