diff -r 87e9ebfbe96a -r 404ad6c9bc20 stifui/uitestserverstarter/inc/UITestServerStarterDocument.h --- a/stifui/uitestserverstarter/inc/UITestServerStarterDocument.h Wed Apr 14 15:58:04 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,144 +0,0 @@ -/* -* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: This file contains the header file of the -* UITestServerStarter Document class. -* -*/ - -#ifndef UITESTSERVERSTARTERDOCUMENT_H_ -#define UITESTSERVERSTARTERDOCUMENT_H_ - -// INCLUDES -#include - -// CONSTANTS -// None - -// MACROS -// None - -// DATA TYPES -// None - -// FUNCTION PROTOTYPES -// None - -// FORWARD DECLARATIONS -class CUITestServerStarterAppUi; -class CEikApplication; - -// CLASS DECLARATION - -// DESCRIPTION -/** - * CClockTestDocument application class. - * An instance of class CClockTestDocument is the Document part of the - * AVKON application framework for the ClockTest example application. - */ -class CUITestServerStarterDocument : public CAknDocument - { - public: // Enumerations - // None - - private: // Enumerations - // None - - private: // Constructors and destructor - // None - public: // New functions - - /** - * NewL. - * Two-phased constructor. - * Construct a CUITestServerStarterDocument for the AVKON application aApp - * using two phase construction, and return a pointer - * to the created object. - * @param aApp Application creating this document. - * @return A pointer to the created instance of CUITestServerStarterDocument. - */ - static CUITestServerStarterDocument* NewL (CEikApplication& aApp); - - /** - * NewLC. - * Two-phased constructor. - * Construct a CUITestServerStarterDocument for the AVKON application aApp - * using two phase construction, and return a pointer - * to the created object. - * @param aApp Application creating this document. - * @return A pointer to the created instance of CUITestServerStarterDocument. - */ - static CUITestServerStarterDocument* NewLC (CEikApplication& aApp); - - /** - * ~CUITestServerStarterDocument - * Virtual Destructor. - */ - virtual ~CUITestServerStarterDocument(); - - public: // Functions from base classes - - /** - * CreateAppUiL - * From CEikDocument, CreateAppUiL. - * Create a CUITestServerStarterAppUi object and return a pointer to it. - * The object returned is owned by the Uikon framework. - * @return Pointer to created instance of AppUi. - */ - CEikAppUi* CreateAppUiL (); - - protected: // New functions - // None - - protected: // Functions from base classes - // None - - private: // New functions - - /** - * ConstructL - * 2nd phase constructor. - */ - void ConstructL (); - - /** - * CUITestServerStarterDocument. - * C++ default constructor. - * @param aApp Application creating this document. - */ - CUITestServerStarterDocument( CEikApplication& aApp ); - - private: // Functions from base classes - // None - - public: //Data - // None - - protected: // Data - // None - - private: // Data - // None - - public: // Friend classes - // None - - protected: // Friend classes - // None - - private: // Friend classes - // None - }; - - -#endif /*UITESTSERVERSTARTERDOCUMENT_H_*/