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

00001 /*
00002 ============================================================================
00003  Name           : CExeLauncher_UIQ3Application from ExeLauncher_UIQ3Application.h
00004  Author   : Hamish Willee
00005  Version         :
00006  Copyright   : (C) Symbian 2007
00007  Description : CExeLauncher_UIQ3Application implementation
00008 ============================================================================
00009 */
00010 
00011 #include <eikstart.h>
00012 
00013 #include "ExeLauncher_UIQ3Application.h"
00014 #include "ExeLauncher_UIQ3Document.h"
00015 #include "ExeLauncher_UIQ3Globals.h" // contains the applications UID
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         }

Generated by  doxygen 1.6.2