classicui_pub/tsrc/bc/apps/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-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:         Declares main application class.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 
       
    24 
       
    25 
       
    26 #ifndef BCTESTCMDLGAPP_H
       
    27 #define BCTESTCMDLGAPP_H
       
    28 
       
    29 // INCLUDES
       
    30 #include <aknapp.h>
       
    31 
       
    32 // CONSTANTS
       
    33 const TUid KUidBCTestCmDlg = { 0x2000475D }; // UID of the application.
       
    34 
       
    35 // CLASS DECLARATION
       
    36 
       
    37 /**
       
    38 * CBCTestCmDlgApp application class.
       
    39 * Provides factory to create concrete document object.
       
    40 */
       
    41 class CBCTestCmDlgApp : public CAknApplication
       
    42     {
       
    43     private: // From CApaApplication
       
    44 
       
    45         /**
       
    46         * From CApaApplication, CreateDocumentL.
       
    47         * Creates CBCTestCmDlgDocument document object.
       
    48         * @return A pointer to the created document object.
       
    49         */
       
    50         CApaDocument* CreateDocumentL();
       
    51 
       
    52         /**
       
    53         * From CApaApplication, AppDllUid.
       
    54         * Returns application's UID ( KUidBCTestCmDlg ).
       
    55         * @return The value of KUidBCTestCmDlg.
       
    56         */
       
    57         TUid AppDllUid() const;
       
    58 
       
    59     };
       
    60 
       
    61 #endif
       
    62 
       
    63 // End of File