rtxdocument.h

来自「symbian系统」· C头文件 代码 · 共 62 行

H
62
字号
/*
* ============================================================================
*  Name     : CRTxDocument from RTxDocument.h
*  Part of  : RTx
*  Created  : 2003. 08. 15. by (V) - Forum Nokia 
*  Description:
*     Declares document for application.
*  Version  :
*  Copyright: Forum Nokia
* ============================================================================
*/

#ifndef RTXDOCUMENT_H
#define RTXDOCUMENT_H

// INCLUDES
#include <akndoc.h>
   

// FORWARD DECLARATIONS
class  CEikAppUi;

// CLASS DECLARATION

/**
*  CRTxDocument application class.
*/
class CRTxDocument : public CAknDocument
    {
    public: // Constructors and destructor
        /**
        * Two-phased constructor.
        */
        static CRTxDocument* NewL(CEikApplication& aApp);

        /**
        * Destructor.
        */
        virtual ~CRTxDocument();


    private:

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

    private:

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

#endif

// End of File

⌨️ 快捷键说明

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