]> code.delx.au - comingnext/blob - ComingNext_SkinFetcher/inc/ComingNext_SkinFetcherDocument.h
added first implementation of ComingNext Skin Fetcher app
[comingnext] / ComingNext_SkinFetcher / inc / ComingNext_SkinFetcherDocument.h
1 /*
2 ========================================================================
3 Name : ComingNext_SkinFetcherDocument.h
4 Author : Michael Prager
5 Copyright : Licensed under GPLv3
6 Description :
7 ========================================================================
8 */
9 #ifndef COMINGNEXT_SKINFETCHERDOCUMENT_H
10 #define COMINGNEXT_SKINFETCHERDOCUMENT_H
11
12 #include <akndoc.h>
13
14 class CEikAppUi;
15
16 /**
17 * @class CComingNext_SkinFetcherDocument ComingNext_SkinFetcherDocument.h
18 * @brief A CAknDocument-derived class is required by the S60 application
19 * framework. It is responsible for creating the AppUi object.
20 */
21 class CComingNext_SkinFetcherDocument: public CAknDocument
22 {
23 public:
24 // constructor
25 static CComingNext_SkinFetcherDocument* NewL(CEikApplication& aApp);
26
27 private:
28 // constructors
29 CComingNext_SkinFetcherDocument(CEikApplication& aApp);
30 void ConstructL();
31
32 public:
33 // from base class CEikDocument
34 CEikAppUi* CreateAppUiL();
35 };
36 #endif // COMINGNEXT_SKINFETCHERDOCUMENT_H