Update contrib.
1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __HELLOWORLDBASICDOCUMENT_H__
17 #define __HELLOWORLDBASICDOCUMENT_H__
23 class CHelloWorldBasicAppUi;
24 class CEikApplication;
28 * CHelloWorldBasicDocument application class.
29 * An instance of class CHelloWorldBasicDocument is the Document part of the
30 * AVKON application framework for the HelloWorldBasic example application.
32 class CHelloWorldBasicDocument : public CAknDocument
36 * Construct a CHelloWorldBasicDocument for the AVKON application aApp
37 * using two phase construction, and return a pointer
38 * to the created object.
39 * @param aApp Application creating this document.
40 * @return A pointer to the created instance of CHelloWorldBasicDocument.
42 static CHelloWorldBasicDocument* NewL(CEikApplication& aApp);
45 * Construct a CHelloWorldBasicDocument for the AVKON application aApp
46 * using two phase construction, and return a pointer
47 * to the created object.
48 * @param aApp Application creating this document.
49 * @return A pointer to the created instance of CHelloWorldBasicDocument.
51 static CHelloWorldBasicDocument* NewLC(CEikApplication& aApp);
53 ~CHelloWorldBasicDocument();
58 * Create a CHelloWorldBasicAppUi object and return a pointer to it.
59 * The object returned is owned by the Uikon framework.
60 * @return Pointer to created instance of AppUi.
62 CEikAppUi* CreateAppUiL();
66 CHelloWorldBasicDocument(CEikApplication& aApp);
70 #endif // __HELLOWORLDBASICDOCUMENT_H__