cmmsldocument.h

来自「The MMS List example demonstrates how to」· C头文件 代码 · 共 61 行

H
61
字号
/* Copyright (c) 2003, Nokia. All rights reserved */

#ifndef __CMMSLDOCUMENT_H__
#define __CMMSLDOCUMENT_H__

// INCLUDES
#include <akndoc.h>

// FORWARD DECLARATIONS
class  CEikAppUi;

// CLASS DECLARATION

/**
*  CMmslDocument application document class.
*
*/
class CMmslDocument : public CAknDocument
    {
    public: // Constructors and destructor
        /**
        * NewL
        * Two-phased constructor.
        * @param aApp Application creating this document
        * @return A pointer to the created instance of CMmslDocument
        */
        static CMmslDocument* NewL( CEikApplication& aApp );

        /**
        * ~CMmslDocument
        * Destructor.
        * Destructor is always virtual.
        */
        virtual ~CMmslDocument();

    private:
        /**
        * CMmslDocument
        * Default constructor.
        * @param aApp Application creating this document
        */
        CMmslDocument( CEikApplication& aApp );

        /**
        * ConstructL
        * By default Symbian 2nd phase constructor is private.
        */
        void ConstructL();

        /**
        * From CEikDocument,CreateAppUiL
        * Create CMmslAppUi "App UI" object.
        * @return A pointer to the created instance of the AppUi
        */
        CEikAppUi* CreateAppUiL();
    };

#endif	// __CMMSLDOCUMENT_H__

// End of File

⌨️ 快捷键说明

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