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