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

📄 ccontdocument.h

📁 实现好友名单。可以今天添加、删除以及增加等操作
💻 H
字号:
/* Copyright (c) 2003, Nokia. All rights reserved */


#ifndef __CCONTDOCUMENT_H__
#define __CCONTDOCUMENT_H__

// INCLUDES
#include <akndoc.h>

// FORWARD DECLARATIONS
class  CEikAppUi;

// CLASS DECLARATION

/**
*  CContDocument application class.
*/
class CContDocument : public CAknDocument
    {
    public: // Constructors and destructor
        /**
        * @function NewL
        * @discussion Construct a CContDocument for the AVKON application aApp
        * using two phase construction, and return a pointer to the created object
        * @param aApp application creating this document
        * @return a pointer to the created instance of CContDocument
        */
        static CContDocument* NewL(CEikApplication& aApp);

        /**
        * Destructor is always virtual
        * @function ~CContDocument
        * @discussion Destroy the object and release all memory objects
        */
        virtual ~CContDocument();

    private:

        /**
        * @function CContDocument
        * @discussion Perform the first phase of two phase construction
        * @param aApp application creating this document
        */
        CContDocument(CEikApplication& aApp);

        /**
        * @function ConstructL
        *
        * @discussion Perform the second phase construction of a
        * CContDocument object
        */
        void ConstructL();

    private:

        /**
        *  @function CreateAppUiL
        *  @discussion Create a CContAppUi object and return a pointer to it
        *  @return a pointer to the created instance of the AppUi created
        */
        CEikAppUi* CreateAppUiL();
    };

#endif // __CCONTDOCUMENT_H__

// End of File

⌨️ 快捷键说明

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