filelistdocument.h

来自「一个简单的资源管理器」· C头文件 代码 · 共 56 行

H
56
字号
/*
 * Copyright (c) 2009 Nokia Corporation.
 */

#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 + =
减小字号Ctrl + -
显示快捷键?