extras/converter/Ui/Src/CCnvApplication.h
branchRCL_3
changeset 15 2d0f9ab0ba18
parent 12 ddecbce3dc1f
child 16 82ca176301de
equal deleted inserted replaced
12:ddecbce3dc1f 15:2d0f9ab0ba18
     1 /*
       
     2 * Copyright (c) 2002 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 *     This class is a part of the standard application framework.
       
    16 *     The application gets instantiated starting from this class.
       
    17 *     Provides a factory method for instantiating the document object.
       
    18 *
       
    19 */
       
    20 
       
    21 
       
    22 
       
    23 #ifndef __CCNVAPPLICATION_H__
       
    24 #define __CCNVAPPLICATION_H__
       
    25 
       
    26 // INCLUDES
       
    27 //#include <eikapp.h>
       
    28 #include <aknapp.h> 
       
    29 
       
    30 // CONSTANTS
       
    31 const TUid KUidCnv = { 0x101f4668 };	// UID of the application
       
    32 
       
    33 // CLASS DEFINITION
       
    34 /**
       
    35 * This class is a part of the standard application framework.
       
    36 * The application gets instantiated starting from this class.
       
    37 * Provides a factory method for instantiating the document object.
       
    38 */
       
    39 class CCnvApplication : public CAknApplication 
       
    40 	{
       
    41 
       
    42 	private: // from CApaApplication
       
    43 
       
    44 		/**
       
    45 		* Creates a CCnvDocument instance.
       
    46 		* @return A pointer to the created document object.
       
    47 		*/
       
    48 		CApaDocument* CreateDocumentL();
       
    49 
       
    50 		/**
       
    51 		* Returns application's UID value.
       
    52 		* @return KUidCnv.
       
    53 		*/
       
    54 		TUid AppDllUid() const;
       
    55 
       
    56 	};
       
    57 
       
    58 #endif // __CCNVAPPLICATION_H__