00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #include <eikstart.h>
00012
00013 #include "ExeLauncher_UIQ3Application.h"
00014 #include "ExeLauncher_UIQ3Document.h"
00015 #include "ExeLauncher_UIQ3Globals.h"
00016
00023 TUid CExeLauncher_UIQ3Application::AppDllUid() const
00024 {
00025 return KUidExeLauncher_UIQ3App;
00026 }
00027
00032 CApaDocument* CExeLauncher_UIQ3Application::CreateDocumentL()
00033 {
00034 return CExeLauncher_UIQ3Document::NewL(*this);
00035 }
00036
00044 CApaApplication* NewApplication()
00045 {
00046 return new CExeLauncher_UIQ3Application;
00047 }
00048
00052 GLDEF_C TInt E32Main()
00053 {
00054 return EikStart::RunApplication(NewApplication);
00055 }