filelistdocument.h

来自「FileList_Example 是s60的一个文件列表控件」· C头文件 代码 · 共 64 行

H
64
字号
/*
* ============================================================================
*  Name     : CFileListDocument from FileListDocument.h
*  Part of  : FileList
*  Created  : 04.11.2006 by Forum Nokia
*  Description:
*     Declares document for application.
*  Version  : 2.0
*  Copyright: 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 + -
显示快捷键?