00001 /* 00002 * Copyright © 2008 Nokia Corporation. 00003 */ 00004 00005 #ifndef INTERNETEMAILAPP_H 00006 #define INTERNETEMAILAPP_H 00007 00008 // INCLUDES 00009 #include <aknapp.h> 00010 00011 // CONSTANTS 00012 // UID of the application 00013 const TUid KUidInternetEmail = { 0x101FF1C8 }; 00014 00015 // CLASS DECLARATION 00016 00022 class CInternetEmailApp : public CAknApplication 00023 { 00024 00025 public: // Functions from base classes 00030 CDictionaryStore* OpenIniFileLC(RFs& aFs) const; 00031 private: 00032 00037 CApaDocument* CreateDocumentL(); 00038 00043 TUid AppDllUid() const; 00044 }; 00045 00046 #endif 00047 00048 // End of File 00049