aoexampledocument.h

来自「Active Object实现动画」· C头文件 代码 · 共 53 行

H
53
字号
/*
* ==============================================================================
*  Name     : CAOExampleDocument from AOExampleDocument.h
*  Part of  : AOExample
*  Created  : 3.5.2004 by Markus Pelkonen
*  Description:
*     Declares document for application.
*  Version  :
*  Copyright: Nokia
* ==============================================================================
*/

#ifndef AOEXAMPLEDOCUMENT_H
#define AOEXAMPLEDOCUMENT_H

#include <akndoc.h>

class  CEikAppUi;

/**
 *  CAOExampleDocument application class.
 */
class CAOExampleDocument : public CAknDocument
    {
    public: // methods

        /**
        * Factory constructor.
        */
        static CAOExampleDocument* NewL(CEikApplication& aApp);

        /**
        * Constructor.
        */
        CAOExampleDocument(CEikApplication& aApp);

        /**
         * Two phase constructor.
         */
        void ConstructL();

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

    private: // from CEikDocument

        CEikAppUi* CreateAppUiL();
    };

#endif

⌨️ 快捷键说明

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