/* Machine-made version of this file copyright (c) 2005 Somusar */ /* Derived from samples that are Copyright (c) 2004, Nokia. All rights reserved */ #ifndef __THREEFORMSAPP_H__ #define __THREEFORMSAPP_H__ // INCLUDES #include // CONSTANTS const TUid KUidThreeForms = { 0x10005C38 }; // UID of the application // CLASS DECLARATION /** * CThreeFormsApplication application class. * Provides factory to create concrete document object. */ class CThreeFormsApplication : public CAknApplication { private: // From CApaApplication /** * From CApaApplication, CreateDocumentL. * Creates CThreeFormsDocument document object. * @return A pointer to the created document object. */ CApaDocument* CreateDocumentL(); /** * From CApaApplication, AppDllUid. * Returns application's UID ( KUidThreeForms ). * @return The value of KUidThreeForms. */ TUid AppDllUid() const; }; #endif // __THREEFORMSAPP_H__ // End of File