summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/symbian_ua_gui/inc/symbian_ua_guiDocument.h
blob: 49f9bfc30f261715ed484f847989c03d0f59db5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
========================================================================
 Name        : symbian_ua_guiDocument.h
 Author      : nanang
 Copyright   : (c) PJSIP 2008
 Description : 
========================================================================
*/
#ifndef SYMBIAN_UA_GUIDOCUMENT_H
#define SYMBIAN_UA_GUIDOCUMENT_H

#include <akndoc.h>
		
class CEikAppUi;

/**
* @class	Csymbian_ua_guiDocument symbian_ua_guiDocument.h
* @brief	A CAknDocument-derived class is required by the S60 application 
*           framework. It is responsible for creating the AppUi object. 
*/
class Csymbian_ua_guiDocument : public CAknDocument
	{
public: 
	// constructor
	static Csymbian_ua_guiDocument* NewL( CEikApplication& aApp );

private: 
	// constructors
	Csymbian_ua_guiDocument( CEikApplication& aApp );
	void ConstructL();
	
public: 
	// from base class CEikDocument
	CEikAppUi* CreateAppUiL();
	};
#endif // SYMBIAN_UA_GUIDOCUMENT_H