uifw/AvKon/tsrc/bc/bctestdom5.0/bctestdomm3g/inc/bctestdomm3gdocument.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 document class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_CBCTESTDOMM3GDOCUMENT_H
       
    20 #define C_CBCTESTDOMM3GDOCUMENT_H
       
    21 
       
    22 #include <eikdoc.h>
       
    23 
       
    24 class CEikAppUi;
       
    25 
       
    26 /**
       
    27  * CBCTestDomM3gDocument application class.
       
    28  */
       
    29 class CBCTestDomM3gDocument : public CEikDocument
       
    30     {
       
    31 public: // Constructors and destructor
       
    32 
       
    33     /**
       
    34      * Symbian OS two-phased constructor.
       
    35      * @return Pointer to created Document class object.
       
    36      * @param aApp Reference to Application class object.
       
    37      */
       
    38     static CBCTestDomM3gDocument* NewL( CEikApplication& aApp );
       
    39 
       
    40     /**
       
    41      * Destructor.
       
    42      */
       
    43     virtual ~CBCTestDomM3gDocument();
       
    44 
       
    45 private: // Constructors
       
    46 
       
    47     /**
       
    48      * Overload constructor.
       
    49      * @param aApp Reference to Application class object.
       
    50      */
       
    51     CBCTestDomM3gDocument( CEikApplication& aApp );
       
    52 
       
    53 // From CEikDocument
       
    54 
       
    55     /**
       
    56      * From CEikDocument, CreateAppUiL.
       
    57      * Creates CBCTestDomM3gAppUi "App UI" object.
       
    58      * @return Pointer to created AppUi class object.
       
    59      */
       
    60     CEikAppUi* CreateAppUiL();
       
    61 
       
    62     };
       
    63 
       
    64 #endif  // C_CBCTESTDOMM3GDOCUMENT_H