fepsetupdocument.h

来自「运行EXE实例的一个实例」· C头文件 代码 · 共 68 行

H
68
字号
/*
* ============================================================================
*  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

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?