sendasexampledocument.h

来自「这是一个自己开发的发送短信的程序」· C头文件 代码 · 共 54 行

H
54
字号
#ifndef SENDASEXAMPLEDOCUMENT_H
#define SENDASEXAMPLEDOCUMENT_H

// INCLUDES
#include <akndoc.h>

// CONSTANTS

// FORWARD DECLARATIONS
class  CEikAppUi;

// CLASS DECLARATION

/**
 *
 * @class	CSendAsExampleDocument SendAsExampleDocument.h
 * @brief	CSendAsExampleDocument application class.
 *
 * Copyright (c) EMCC Software Ltd 2003
 * @version	1.0
 *
 */
class CSendAsExampleDocument : public CAknDocument
    {
    public: // Constructors and destructor
        /**
        * Two-phased constructor.
        */
        static CSendAsExampleDocument* NewL(CEikApplication& aApp);

        virtual ~CSendAsExampleDocument();


    private:

        /**
        * EPOC default constructor.
        */
        CSendAsExampleDocument(CEikApplication& aApp);
        void ConstructL();

    private:

        /**
        * From CEikDocument, create CSendAsExampleAppUi "App UI" object.
        */
        CEikAppUi* CreateAppUiL();
    };

#endif

// End of File

⌨️ 快捷键说明

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