00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #include <s32strm.h>
00012 #include <QikApplication.h>
00013
00014 #include "ExeLauncher_UIQ3Document.h"
00015 #include "ExeLauncher_UIQ3AppUi.h"
00016 #include "ExeLauncher_UIQ3Globals.h"
00017
00023 CExeLauncher_UIQ3Document* CExeLauncher_UIQ3Document::NewL(CQikApplication& aApp)
00024 {
00025 CExeLauncher_UIQ3Document* self = new (ELeave) CExeLauncher_UIQ3Document(aApp);
00026 CleanupStack::PushL(self);
00027 self->ConstructL();
00028 CleanupStack::Pop(self);
00029 return self;
00030 }
00031
00036 CExeLauncher_UIQ3Document::CExeLauncher_UIQ3Document(CQikApplication& aApp)
00037 : CQikDocument(aApp)
00038 {
00039 }
00040
00046 void CExeLauncher_UIQ3Document::ConstructL()
00047 {
00048 }
00049
00055 CEikAppUi* CExeLauncher_UIQ3Document::CreateAppUiL()
00056 {
00057 return new (ELeave) CExeLauncher_UIQ3AppUi;
00058 }
00059