00001 // Symbian Foundation Example Code 00002 // 00003 // This software is in the public domain. No copyright is claimed, and you 00004 // may use it for any purpose without license from the Symbian Foundation. 00005 // No warranty for any purpose is expressed or implied by the authors or 00006 // the Symbian Foundation. 00007 00008 00009 // INCLUDE FILES 00010 #include <eikstart.h> 00011 #include "RecipeExApplication.h" 00012 00013 LOCAL_C CApaApplication* NewApplication() 00014 { 00015 return new CRecipeExApplication; 00016 } 00017 00018 GLDEF_C TInt E32Main() 00019 { 00020 return EikStart::RunApplication(NewApplication); 00021 } 00022