blob: be5deff378c0e6702a1526d198179d8ce89d591d [file] [log] [blame]
Tristan Matthews0a329cc2013-07-17 13:20:14 -04001/*
2========================================================================
3 Name : pjsuaDocument.h
4 Author : nanang
5 Copyright : Copyright (C) 2013 Teluu Inc. (http://www.teluu.com)
6 Description :
7========================================================================
8*/
9#ifndef PJSUADOCUMENT_H
10#define PJSUADOCUMENT_H
11
12#include <akndoc.h>
13
14class CEikAppUi;
15
16/**
17* @class CpjsuaDocument pjsuaDocument.h
18* @brief A CAknDocument-derived class is required by the S60 application
19* framework. It is responsible for creating the AppUi object.
20*/
21class CpjsuaDocument : public CAknDocument
22 {
23public:
24 // constructor
25 static CpjsuaDocument* NewL( CEikApplication& aApp );
26
27private:
28 // constructors
29 CpjsuaDocument( CEikApplication& aApp );
30 void ConstructL();
31
32public:
33 // from base class CEikDocument
34 CEikAppUi* CreateAppUiL();
35 };
36#endif // PJSUADOCUMENT_H