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

📄 dbmsexampledocument.h

📁 SymbianOS的DBMS实例 详细的代码揭示SymbianOS数据库管理系统的使用 很规范
💻 H
字号:
/*
* ============================================================================
*  Name     : DBMSexampleDocument.h
*  Part of  : DBMSexample
*  Created  : 02/28/2003 by Forum Nokia
*  Description:
*     Declares document for application.
*  Version  :
*  Copyright: Nokia Corporation, 2003
* ============================================================================
*/

#ifndef DBMSEXAMPLEDOCUMENT_H
#define DBMSEXAMPLEDOCUMENT_H

#include <akndoc.h>
   
// FORWARD DECLARATIONS
class  CEikAppUi;

// CLASS DECLARATION

/**
*  CDBMSexampleDocument application class.
*/
class CDBMSexampleDocument : public CAknDocument
    {
    public: // Constructors and destructor
        /**
        * Function NewL
		* Create a new Document object
        */
        static CDBMSexampleDocument* NewL(CEikApplication& aApp);

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

    public: // New functions

    protected:  // New functions

    protected:  // Functions from base classes

    private:

        /**
        * EPOC default constructor.
        */
        CDBMSexampleDocument(CEikApplication& aApp);
        void ConstructL();

    private:

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

#endif

// End of File

⌨️ 快捷键说明

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