examples/SFExamples/NotifierExample/Launchers/ExeLauncher_UIQ3/src/ExeLauncher_UIQ3Document.cpp

00001 /*
00002 ============================================================================
00003  Name           : CExeLauncher_UIQ3Document from ExeLauncher_UIQ3Document.h
00004  Author   : Hamish Willee
00005  Version         :
00006  Copyright   : (C) Symbian 2007
00007  Description : CExeLauncher_UIQ3Document implementation
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 

Generated by  doxygen 1.6.2