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 __HELLOWORLDBASICAPPLICATION_H__
17 #define __HELLOWORLDBASICAPPLICATION_H__
23 * CHelloWorldBasicApplication application class.
24 * Provides factory to create concrete document object.
25 * An instance of CHelloWorldBasicApplication is the application part of the
26 * AVKON application framework for the HelloWorldBasic example application.
28 class CHelloWorldBasicApplication : public CAknApplication
32 * From CApaApplication
33 * @return Application's UID (KUidHelloWorldBasicApp).
34 * TUid AppDllUid() const;
36 TUid AppDllUid() const;
40 * From CApaApplication
41 * Creates CHelloWorldBasicDocument document object. The returned
42 * pointer in not owned by the CHelloWorldBasicApplication object.
43 * @return A pointer to the created document object.
45 CApaDocument* CreateDocumentL();
48 #endif // __HELLOWORLDBASICAPPLICATION_H__