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