vtuis/videotelui/inc/CVtUiApp.h
branchRCL_3
changeset 25 779871d1e4f4
parent 0 ed9695c8bcbe
equal deleted inserted replaced
24:f15ac8e65a02 25:779871d1e4f4
       
     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:  Application class for Video Telephone application.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef CVTUIAPP_H
       
    21 #define CVTUIAPP_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include    <aknapp.h>
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /**
       
    29 *  Application class for Video Telephone application.
       
    30 *
       
    31 *  @since Series 60 2.6
       
    32 */
       
    33 class CVtUiApp 
       
    34     : public CAknApplication
       
    35     {
       
    36     public: // Constructors and destructor
       
    37 
       
    38         /**
       
    39         * C++ default constructor.
       
    40         */
       
    41         CVtUiApp();
       
    42 
       
    43     public: // Functions from base classes
       
    44 
       
    45         /**
       
    46         * From CAknApplication, creates document instance.
       
    47         * @return document instance.
       
    48         */
       
    49         virtual CApaDocument* CreateDocumentL();
       
    50 
       
    51         /**
       
    52         * From CAknApplication, returns UID of the application.
       
    53         * @return UID of the application.
       
    54         */
       
    55         virtual TUid AppDllUid() const;
       
    56 
       
    57     };
       
    58 
       
    59 #endif      // CVTUIAPP_H  
       
    60 
       
    61 // End of File