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 "RecipeEx.hrh" 00011 #include "RecipeExDocument.h" 00012 #include "RecipeExApplication.h" 00013 00014 // ============================ MEMBER FUNCTIONS =============================== 00015 00020 CApaDocument* CRecipeExApplication::CreateDocumentL() 00021 { 00022 // Create an RecipeEx document, and return a pointer to it 00023 return CRecipeExDocument::NewL(*this); 00024 } 00025 00030 TUid CRecipeExApplication::AppDllUid() const 00031 { 00032 // Return the UID for the RecipeEx application 00033 return KUidRecipeExApp; 00034 } 00035 00036 // End of File