diff -r 3ab5c078b490 -r c63ee96dbe5f taskswitcher/testapplications/generator/generator/common/inc/helloworldbasicapplication.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/taskswitcher/testapplications/generator/generator/common/inc/helloworldbasicapplication.h Thu Sep 16 12:11:40 2010 +0100 @@ -0,0 +1,54 @@ +/* +* ============================================================================== +* Name : helloworldbasicapplication.h +* Part of : Helloworldbasic +* Interface : +* Description : +* Version : +* +* Copyright (c) 2005-2006 Nokia Corporation. +* This material, including documentation and any related +* computer programs, is protected by copyright controlled by +* Nokia Corporation. +* ============================================================================== +*/ + +#ifndef __HELLOWORLDBASICAPPLICATION_H__ +#define __HELLOWORLDBASICAPPLICATION_H__ + +// INCLUDES +#include + +// CLASS DECLARATION + +/** +* CHelloWorldBasicApplication application class. +* Provides factory to create concrete document object. +* An instance of CHelloWorldBasicApplication is the application part of the +* AVKON application framework for the HelloWorldBasic example application. +*/ +class CHelloWorldBasicApplication : public CAknApplication + { + public: // Functions from base classes + + /** + * From CApaApplication, AppDllUid. + * @return Application's UID (KUidHelloWorldBasicApp). + */ + TUid AppDllUid() const; + + protected: // Functions from base classes + + /** + * From CApaApplication, CreateDocumentL. + * Creates CHelloWorldBasicDocument document object. The returned + * pointer in not owned by the CHelloWorldBasicApplication object. + * @return A pointer to the created document object. + */ + CApaDocument* CreateDocumentL(); + }; + +#endif // __HELLOWORLDBASICAPPLICATION_H__ + +// End of File +