sl@0: // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef __HELLOWORLDBASICDOCUMENT_H__ sl@0: #define __HELLOWORLDBASICDOCUMENT_H__ sl@0: sl@0: sl@0: #include sl@0: sl@0: sl@0: class CHelloWorldBasicAppUi; sl@0: class CEikApplication; sl@0: sl@0: sl@0: /** sl@0: * CHelloWorldBasicDocument application class. sl@0: * An instance of class CHelloWorldBasicDocument is the Document part of the sl@0: * AVKON application framework for the HelloWorldBasic example application. sl@0: */ sl@0: class CHelloWorldBasicDocument : public CAknDocument sl@0: { sl@0: public: sl@0: /** sl@0: * Construct a CHelloWorldBasicDocument for the AVKON application aApp sl@0: * using two phase construction, and return a pointer sl@0: * to the created object. sl@0: * @param aApp Application creating this document. sl@0: * @return A pointer to the created instance of CHelloWorldBasicDocument. sl@0: */ sl@0: static CHelloWorldBasicDocument* NewL(CEikApplication& aApp); sl@0: sl@0: /** sl@0: * Construct a CHelloWorldBasicDocument for the AVKON application aApp sl@0: * using two phase construction, and return a pointer sl@0: * to the created object. sl@0: * @param aApp Application creating this document. sl@0: * @return A pointer to the created instance of CHelloWorldBasicDocument. sl@0: */ sl@0: static CHelloWorldBasicDocument* NewLC(CEikApplication& aApp); sl@0: sl@0: ~CHelloWorldBasicDocument(); sl@0: sl@0: public: sl@0: /** sl@0: * From CEikDocument sl@0: * Create a CHelloWorldBasicAppUi object and return a pointer to it. sl@0: * The object returned is owned by the Uikon framework. sl@0: * @return Pointer to created instance of AppUi. sl@0: */ sl@0: CEikAppUi* CreateAppUiL(); sl@0: sl@0: private: sl@0: void ConstructL(); sl@0: CHelloWorldBasicDocument(CEikApplication& aApp); sl@0: sl@0: }; sl@0: sl@0: #endif // __HELLOWORLDBASICDOCUMENT_H__ sl@0: sl@0: // End of File sl@0: