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

输入法编程

开发平台:

Visual C++

  1. /*
  2. * ============================================================================
  3. *  Name     : CFepSetupDocument from FepSetupDocument.h
  4. *  Part of  : FepSetup
  5. *  Created  : 02/23/2003 by Forum Nokia
  6. *  Description:
  7. *     Declares document for application.
  8. *  Version  :
  9. *  Copyright: 
  10. * ============================================================================
  11. */
  12. #ifndef FEPSETUPDOCUMENT_H
  13. #define FEPSETUPDOCUMENT_H
  14. // INCLUDES
  15. #include <akndoc.h>
  16.    
  17. // CONSTANTS
  18. // FORWARD DECLARATIONS
  19. class  CEikAppUi;
  20. // CLASS DECLARATION
  21. /**
  22. *  CFepSetupDocument application class.
  23. */
  24. class CFepSetupDocument : public CAknDocument
  25.     {
  26.     public: // Constructors and destructor
  27.         /**
  28.         * Two-phased constructor.
  29.         */
  30.         static CFepSetupDocument* NewL(CEikApplication& aApp);
  31.         /**
  32.         * Destructor.
  33.         */
  34.         virtual ~CFepSetupDocument();
  35.     public: // New functions
  36.     protected:  // New functions
  37.     protected:  // Functions from base classes
  38.     private:
  39.         /**
  40.         * EPOC default constructor.
  41.         */
  42.         CFepSetupDocument(CEikApplication& aApp);
  43.         void ConstructL();
  44.     private:
  45.         /**
  46.         * From CEikDocument, create CFepSetupAppUi "App UI" object.
  47.         */
  48.         CEikAppUi* CreateAppUiL();
  49.     };
  50. #endif
  51. // End of File