00001 /* 00002 ======================================================================== 00003 Name : ExeLauncher_S60Document.cpp 00004 Author : Hamish Willee 00005 Copyright : (C) Symbian 2007 00006 Description : 00007 ======================================================================== 00008 */ 00009 // [[[ begin generated region: do not modify [Generated User Includes] 00010 #include "ExeLauncher_S60Document.h" 00011 #include "ExeLauncher_S60AppUi.h" 00012 // ]]] end generated region [Generated User Includes] 00013 00018 CExeLauncher_S60Document::CExeLauncher_S60Document( CEikApplication& anApplication ) 00019 : CAknDocument( anApplication ) 00020 { 00021 } 00022 00027 void CExeLauncher_S60Document::ConstructL() 00028 { 00029 } 00030 00040 CExeLauncher_S60Document* CExeLauncher_S60Document::NewL( CEikApplication& aApp ) 00041 { 00042 CExeLauncher_S60Document* self = new ( ELeave ) CExeLauncher_S60Document( aApp ); 00043 CleanupStack::PushL( self ); 00044 self->ConstructL(); 00045 CleanupStack::Pop( self ); 00046 return self; 00047 } 00048 00053 CEikAppUi* CExeLauncher_S60Document::CreateAppUiL() 00054 { 00055 return new ( ELeave ) CExeLauncher_S60AppUi; 00056 } 00057