tsrc/mustestapp/inc/AiwTestAppDocument.h
branchRCL_3
changeset 33 bc78a40cd63c
parent 32 73a1feb507fb
child 35 6c57ef9392d2
equal deleted inserted replaced
32:73a1feb507fb 33:bc78a40cd63c
     1 /*
       
     2 * Copyright (c) 2002-2005 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:  Declares document for application.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef AIWTESTDOCUMENT_H
       
    19 #define AIWTESTDOCUMENT_H
       
    20 
       
    21 // INCLUDES
       
    22 #include <akndoc.h>
       
    23    
       
    24 // CONSTANTS
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 class CEikAppUi;
       
    28 
       
    29 // CLASS DECLARATION
       
    30 
       
    31 /**
       
    32 *  CAiwTestDocument application class.
       
    33 */
       
    34 class CAiwTestDocument : public CAknDocument
       
    35     {
       
    36     public: // Constructors and destructor
       
    37         /**
       
    38         * Two-phased constructor.
       
    39         */
       
    40         static CAiwTestDocument* NewL(CEikApplication& aApp);
       
    41 
       
    42         /**
       
    43         * Destructor.
       
    44         */
       
    45         virtual ~CAiwTestDocument();
       
    46 
       
    47     public: // New functions
       
    48     public: // Functions from base classes
       
    49     protected:  // New functions
       
    50     protected:  // Functions from base classes
       
    51 
       
    52     private:
       
    53         /**
       
    54         * C++ default constructor.
       
    55         */
       
    56         CAiwTestDocument(CEikApplication& aApp);
       
    57 
       
    58         /**
       
    59         * By default Symbian 2nd phase constructor is private.
       
    60         */        
       
    61         void ConstructL();
       
    62 
       
    63     private:
       
    64         /**
       
    65         * From CEikDocument, create CAiwTestAppUi "App UI" object.
       
    66         */
       
    67         CEikAppUi* CreateAppUiL();
       
    68     };
       
    69 
       
    70 #endif
       
    71 
       
    72 // End of File
       
    73