voiceui/voiceuivoicerecognition/inc/vuicdocument.h
branchRCL_3
changeset 19 e36f3802f733
parent 0 bf1d17376201
equal deleted inserted replaced
18:cad71a31b7fc 19:e36f3802f733
       
     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:  
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef VUICDOCUMENT_H
       
    20 #define VUICDOCUMENT_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <AknDoc.h>
       
    24 
       
    25 // FORWARD DECLARATIONS
       
    26 class  CEikAppUi;
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 * CDocument application class.
       
    32 */
       
    33 NONSHARABLE_CLASS( CDocument ) : public CAknDocument
       
    34     {
       
    35     public: // Constructors and destructor
       
    36 
       
    37         /**
       
    38         * Two-phased constructor.
       
    39         */
       
    40         static CDocument* NewL( CEikApplication& aApp );
       
    41 
       
    42         /**
       
    43         * Destructor.
       
    44         */
       
    45         virtual ~CDocument();
       
    46         
       
    47     private: // New Functions
       
    48 
       
    49         /**
       
    50         * C++ default constructor.
       
    51         * @param aApp reference to application object.
       
    52         */
       
    53         CDocument( CEikApplication& aApp );
       
    54         
       
    55         /**
       
    56         * Symbian 2nd phase constructor.
       
    57         */
       
    58         void ConstructL();
       
    59 
       
    60     private: // Functions from base classes
       
    61 
       
    62         /**
       
    63         * From CEikDocument
       
    64         * £see CEikDocument for more information
       
    65         */
       
    66         CEikAppUi* CreateAppUiL();
       
    67     };
       
    68 
       
    69 #endif  // VUICDOCUMENT_H
       
    70 
       
    71 // End of File
       
    72