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

📄 myzoneapp.h

📁 symbian 的文件保密软件,可以把文件设置为私有或者还原为公共,私有时,别人没有权限是看不到的,还可以参照您的需求或建议为您定制软件.
💻 H
字号:
/*
* ============================================================================
*  Name     : CMyZoneApp from MyZoneApp.h
*  Part of  : MyZone
*  Created  : 23.03.2007 by chenqing
*  Description:
*     Declares main application class.
*  Version  :
*  Copyright: chenqing
* ============================================================================
*/

#ifndef MYZONEAPP_H
#define MYZONEAPP_H

// INCLUDES
#include <aknapp.h>

// CONSTANTS
// UID of the application
const TUid KUidMyZone = { 0x0E72F2BC };

// CLASS DECLARATION

/**
* CMyZoneApp application class.
* Provides factory to create concrete document object.
* 
*/
class CMyZoneApp : public CAknApplication
    {
    
    public: // Functions from base classes
    private:

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

#endif

// End of File

⌨️ 快捷键说明

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