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

📄 filelistdocument.h

📁 Source codes and documents for how to find files in phone memory or mmc card in Symbian OS. Compatib
💻 H
字号:
/*
* ============================================================================
*  Name     : CFileListDocument from FileListDocument.h
*  Part of  : FileList
*  Created  : 18.12.2002 by Forum Nokia
*  Description:
*     Declares document for application.
*  Version  : 1.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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -