FepSetupApp.h
上传用户:tjsjht
上传日期:2021-01-13
资源大小:25k
文件大小:1k
源码类别:

输入法编程

开发平台:

Visual C++

  1. /*
  2. * ============================================================================
  3. *  Name     : CFepSetupApp from FepSetupApp.h
  4. *  Part of  : FepSetup
  5. *  Created  : 02/23/2003 by Chiam Poh Guan
  6. *  Description:
  7. *     Declares main application class.
  8. *  Version  :
  9. *  Copyright: 
  10. * ============================================================================
  11. */
  12. #ifndef FEPSETUPAPP_H
  13. #define FEPSETUPAPP_H
  14. // INCLUDES
  15. #include <aknapp.h>
  16. // CONSTANTS
  17. // UID of the application
  18. const TUid KUidFepSetup = { 0x00003473 };
  19. // CLASS DECLARATION
  20. /**
  21. * CFepSetupApp application class.
  22. * Provides factory to create concrete document object.
  23. */
  24. class CFepSetupApp : public CAknApplication
  25.     {
  26.     
  27.     public: // Functions from base classes
  28.     private:
  29.         /**
  30.         * From CApaApplication, creates CFepSetupDocument document object.
  31.         * @return A pointer to the created document object.
  32.         */
  33.         CApaDocument* CreateDocumentL();
  34.         
  35.         /**
  36.         * From CApaApplication, returns application's UID (KUidFepSetup).
  37.         * @return The value of KUidFepSetup.
  38.         */
  39.         TUid AppDllUid() const;
  40.     };
  41. #endif
  42. // End of File