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