00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef __RECIPEEXDOCUMENT_h__
00010 #define __RECIPEEXDOCUMENT_h__
00011
00012
00013 #include <akndoc.h>
00014
00015
00016 class CRecipeExAppUi;
00017 class CEikApplication;
00018
00019
00020
00026 class CRecipeExDocument : public CAknDocument
00027 {
00028 public:
00029
00030
00040 static CRecipeExDocument* NewL(CEikApplication& aApp);
00041
00051 static CRecipeExDocument* NewLC(CEikApplication& aApp);
00052
00057 virtual ~CRecipeExDocument();
00058
00059 public:
00060
00061
00069 CEikAppUi* CreateAppUiL();
00070
00071 private:
00072
00073
00078 void ConstructL();
00079
00085 CRecipeExDocument(CEikApplication& aApp);
00086
00087 };
00088
00089 #endif // __RECIPEEXDOCUMENT_h__
00090