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

📄 filelistdocument.h

📁 基于SYMBIAN 列表的开发,很不错,欢迎下载学习!!!支持一下本站
💻 H
字号:
/*
 * ============================================================================
 *  Name       : CFileListDocument from FileListDocument.h
 *  Part of    : FileList
 *  Created    : 04/11/2006 by Forum Nokia
 *  Description:
 *    Declares the document for the application.
 *  Version    : 2.1.0
 * ============================================================================
 */

#ifndef FILELISTDOCUMENT_H
#define FILELISTDOCUMENT_H

// INCLUDES
#include <akndoc.h>


// CONSTANTS

// FORWARD DECLARATIONS
class  CEikAppUi;

// CLASS DECLARATION

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

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

    private:

        /**
        * Symbian default constructor.
        */
        CFileListDocument(CEikApplication& aApp);
        void ConstructL();

    private: // Data

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

    };

#endif

// End of File

⌨️ 快捷键说明

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