vtuis/videotelui/inc/CVtUiDoc.h
branchRCL_3
changeset 25 779871d1e4f4
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:  Document class for Video Telephone application.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef CVTUIDOC_H
       
    21 #define CVTUIDOC_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include    <AknDoc.h>
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /**
       
    29 *  Document class for Video Telephone application.
       
    30 *
       
    31 *  @since Series 60 2.6
       
    32 */
       
    33 class CVtUiDoc
       
    34     : public CAknDocument
       
    35     {
       
    36     public: // Constructors and destructor
       
    37         
       
    38         /**
       
    39         * C++ constructor.
       
    40         * @param aApp application instance.
       
    41         */
       
    42         CVtUiDoc( CEikApplication& aApp );
       
    43 
       
    44     public: // Functions from base classes
       
    45 
       
    46         /**
       
    47         * From CAknDocument, creates application UI instance.
       
    48         * @return application UI instance.
       
    49         */
       
    50         virtual CEikAppUi* CreateAppUiL();
       
    51 
       
    52         /**
       
    53         * From CAknDocument, updates task name.
       
    54         * @param aWgName window group name instance.
       
    55         */
       
    56         virtual void UpdateTaskNameL( CApaWindowGroupName* aWgName );
       
    57 
       
    58     };
       
    59 
       
    60 #endif      // CVTUIDOC_H   
       
    61             
       
    62 // End of File