sysresmonitoring/oommonitor/tsrc/oomtest/t_oomtestapp/inc/t_oomtestappapplication.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 19 Feb 2010 22:58:54 +0200
branchRCL_3
changeset 1 0fdb7f6b0309
child 9 332e7bf3b42f
permissions -rw-r--r--
Revision: 201002 Kit: 201007

/*
 ============================================================================
 Name		: t_oomtestappApplication.h
 Author	  : 
 Copyright   : Your copyright notice
 Description : Declares main application class.
 ============================================================================
 */

#ifndef __T_OOMTESTAPPAPPLICATION_H__
#define __T_OOMTESTAPPAPPLICATION_H__

// INCLUDES
#include <aknapp.h>

// CLASS DECLARATION

/**
 * Ct_oomtestappApplication application class.
 * Provides factory to create concrete document object.
 * An instance of Ct_oomtestappApplication is the application part of the
 * AVKON application framework for the t_oomtestapp example application.
 */
class Ct_oomtestappApplication : public CAknApplication
	{
public:
	Ct_oomtestappApplication();
	// Functions from base classes

	/**
	 * From CApaApplication, AppDllUid.
	 * @return Application's UID
	 */
	TUid AppDllUid() const;

	~Ct_oomtestappApplication();
protected:
	// Functions from base classes

	/**
	 * From CApaApplication, CreateDocumentL.
	 * Creates Ct_oomtestappDocument document object. The returned
	 * pointer in not owned by the Ct_oomtestappApplication object.
	 * @return A pointer to the created document object.
	 */
	CApaDocument* CreateDocumentL();
	
private:
	};

#endif // __T_OOMTESTAPPAPPLICATION_H__
// End of File