⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cmmsldocument.h

📁 The MMS List example demonstrates how to: List the MMS messages in the Inbox and sort them by sen
💻 H
字号:
/* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -