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

📄 dbmsexampleapp.h

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

#ifndef DBMSEXAMPLEAPP_H
#define DBMSEXAMPLEAPP_H

// INCLUDES
#include <aknapp.h>

// UID of the application
const TUid KUidDBMSexample = { 0x0352B80E};

class CDBMSexampleApp : public CAknApplication
    {
    
    public: // Functions from base classes
    private:

        /**
        * From CApaApplication, creates CDBMSexampleDocument document object.
        * @return A pointer to the created document object.
        */
        CApaDocument* CreateDocumentL();
        
        /**
        * From CApaApplication, returns application's UID (KUidDBMSexample).
        * @return The value of KUidDBMSexample.
        */
        TUid AppDllUid() const;
    };

#endif

// End of File

⌨️ 快捷键说明

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