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