uifw/AvKon/tsrc/bc/bctestdom5.0/bctestdomm3g/inc/bctestdomm3gapp.h
changeset 21 558113899881
parent 14 3320e4e6e8bb
child 22 75713bee6484
child 33 b3425bf29f82
equal deleted inserted replaced
14:3320e4e6e8bb 21:558113899881
     1 /*
       
     2 * Copyright (c) 2007 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:  Define application class.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_CBCTESTDOMM3GAPP_H
       
    20 #define C_CBCTESTDOMM3GAPP_H
       
    21 
       
    22 #include <aknapp.h>
       
    23 
       
    24 const TUid KUidBCTestM3g = { 0xA00040A2 }; // UID of the application.
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /**
       
    29  * CBCTestDomM3gApp application class.
       
    30  * Provides factory to create concrete document object.
       
    31  */
       
    32 class CBCTestDomM3gApp : public CAknApplication
       
    33     {
       
    34 private: // From CApaApplication
       
    35 
       
    36     /**
       
    37     * From CApaApplication, CreateDocumentL.
       
    38     * Creates CBCTestTemplateDocument document object.
       
    39     * @return A pointer to the created document object.
       
    40     */
       
    41     CApaDocument* CreateDocumentL();
       
    42 
       
    43     /**
       
    44     * From CApaApplication, AppDllUid.
       
    45     * Returns application's UID ( KUidBCTestTemplate ).
       
    46     * @return The value of KUidBCTestTemplate.
       
    47     */
       
    48     TUid AppDllUid() const;
       
    49 
       
    50     };
       
    51 
       
    52 #endif //C_CBCTESTDOMM3GAPP_H