uifw/AvKon/tsrc/bc/bctestdom5.0/bctestdomavkonpsln/inc/bctestdomavkonpslnapp.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:  declaration of app.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_BCTESTDOMAVKONPSLNAPP_H
       
    20 #define C_BCTESTDOMAVKONPSLNAPP_H
       
    21 
       
    22 #include <aknapp.h>
       
    23 
       
    24 const TUid KUidBCTestDomain = { 0xA00040A1 }; // UID of the application.
       
    25 
       
    26 /**
       
    27 * CBCTestDomAvkonPslnApp class.
       
    28 * Provides factory to create concrete document object.
       
    29 */
       
    30 class CBCTestDomAvkonPslnApp : public CAknApplication
       
    31     {
       
    32     
       
    33 private: 
       
    34 // From CApaApplication
       
    35 
       
    36     /**
       
    37     * From CApaApplication, CreateDocumentL.
       
    38     * Creates CBCTestDomAvkonPslnDocument 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 ( KUidBCTestDomain ).
       
    46     * @return The value of KUidBCTestDomain.
       
    47     */
       
    48     TUid AppDllUid() const;
       
    49 
       
    50     };
       
    51 
       
    52 #endif // C_BCTESTDOMAVKONPSLNAPP_H
       
    53 
       
    54 // End of File