FepSetupDocument.h
资源名称:Symbian.zip [点击查看]
上传用户:tjsjht
上传日期:2021-01-13
资源大小:25k
文件大小:1k
源码类别:
输入法编程
开发平台:
Visual C++
- /*
- * ============================================================================
- * Name : CFepSetupDocument from FepSetupDocument.h
- * Part of : FepSetup
- * Created : 02/23/2003 by Forum Nokia
- * Description:
- * Declares document for application.
- * Version :
- * Copyright:
- * ============================================================================
- */
- #ifndef FEPSETUPDOCUMENT_H
- #define FEPSETUPDOCUMENT_H
- // INCLUDES
- #include <akndoc.h>
- // CONSTANTS
- // FORWARD DECLARATIONS
- class CEikAppUi;
- // CLASS DECLARATION
- /**
- * CFepSetupDocument application class.
- */
- class CFepSetupDocument : public CAknDocument
- {
- public: // Constructors and destructor
- /**
- * Two-phased constructor.
- */
- static CFepSetupDocument* NewL(CEikApplication& aApp);
- /**
- * Destructor.
- */
- virtual ~CFepSetupDocument();
- public: // New functions
- protected: // New functions
- protected: // Functions from base classes
- private:
- /**
- * EPOC default constructor.
- */
- CFepSetupDocument(CEikApplication& aApp);
- void ConstructL();
- private:
- /**
- * From CEikDocument, create CFepSetupAppUi "App UI" object.
- */
- CEikAppUi* CreateAppUiL();
- };
- #endif
- // End of File