voiceui/vcommand/inc/vcapp.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:  Application class for vcommand app
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CVCDAPP_H
       
    20 #define CVCDAPP_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <aknapp.h>
       
    24 
       
    25 // CONSTANTS
       
    26 // UID of the application
       
    27 const TUid KUidVCommand = { 0x101F8555 };
       
    28 
       
    29 // CLASS DECLARATION
       
    30 
       
    31 /**
       
    32 * CVCApp application class.
       
    33 * Provides factory to create concrete document object.
       
    34 */
       
    35 class CVCApp : public CAknApplication
       
    36     {
       
    37     
       
    38     private:
       
    39 
       
    40         /**
       
    41         * From CApaApplication
       
    42         * @see CApaApplication for more information
       
    43         */
       
    44         CApaDocument* CreateDocumentL();
       
    45         
       
    46         /**
       
    47         * From CApaApplication
       
    48         * @see CApaApplication for more information
       
    49         */
       
    50         TUid AppDllUid() const;
       
    51   
       
    52     };
       
    53 
       
    54 #endif  // CVCAPP_H
       
    55 
       
    56 // End of File
       
    57