multimediacommsengine/tsrc/testdriver/testclient/ui/src/CTcApplication.h
changeset 0 1bce908db942
equal deleted inserted replaced
-1:000000000000 0:1bce908db942
       
     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:  See class definition below.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef __CTCAPPLICATIONN_H__
       
    19 #define __CTCAPPLICATIONN_H__
       
    20 
       
    21 // INCLUDES
       
    22 #include <eikapp.h>
       
    23 
       
    24 // CLASS DEFINITION
       
    25 /**
       
    26  * CTcApplication implements the Application class required
       
    27  * by the Application Framework.
       
    28  * Its main task is to create the application document.
       
    29  */
       
    30 class CTcApplication
       
    31 	: public CEikApplication
       
    32 	{
       
    33 	public: // Constructors and destructor
       
    34 
       
    35 		/// Default constructor.
       
    36 		CTcApplication();
       
    37 
       
    38 		/// Destructor.
       
    39 		~CTcApplication();
       
    40 
       
    41 	public:  // from CEikApplication
       
    42 
       
    43 		TUid AppDllUid() const;
       
    44 
       
    45 	protected: // from CEikApplication
       
    46 
       
    47 		CApaDocument* CreateDocumentL();
       
    48 
       
    49 	};
       
    50 
       
    51 #endif // __CTCAPPLICATIONN_H__