uifw/AvKon/tsrc/bc/S60_SDK3.0/bctestcmdlg/inc/bctestcmdlgdocument.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) 2006 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:
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_BCTEST_CMDLG_DOCUMENT_H
       
    20 #define C_BCTEST_CMDLG_DOCUMENT_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <eikdoc.h>
       
    24 
       
    25 // CONSTANTS
       
    26 
       
    27 // FORWARD DECLARATIONS
       
    28 class  CEikAppUi;
       
    29 
       
    30 // CLASS DECLARATION
       
    31 
       
    32 /**
       
    33 * CBCTestCmDlgDocument application class.
       
    34 */
       
    35 class CBCTestCmDlgDocument : public CEikDocument
       
    36     {
       
    37     public: // Constructors and destructor
       
    38 
       
    39         /**
       
    40         * Symbian OS two-phased constructor.
       
    41         * @return Pointer to created Document class object.
       
    42         * @param aApp Reference to Application class object.
       
    43         */
       
    44         static CBCTestCmDlgDocument* NewL( CEikApplication& aApp );
       
    45 
       
    46         /**
       
    47         * Destructor.
       
    48         */
       
    49         virtual ~CBCTestCmDlgDocument();
       
    50 
       
    51     private: // Constructors
       
    52 
       
    53         /**
       
    54         * Overload constructor.
       
    55         * @param aApp Reference to Application class object.
       
    56         */
       
    57         CBCTestCmDlgDocument( CEikApplication& aApp );
       
    58 
       
    59     private: // From CEikDocument
       
    60 
       
    61         /**
       
    62         * From CEikDocument, CreateAppUiL.
       
    63         * Creates CBCTestTemplateAppUi "App UI" object.
       
    64         * @return Pointer to created AppUi class object.
       
    65         */
       
    66         CEikAppUi* CreateAppUiL();
       
    67 
       
    68     };
       
    69 
       
    70 #endif  // C_BCTEST_CMDLG_DOCUMENT_H
       
    71 
       
    72 // End of File