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

📄 lustrationapp.h

📁 一个简单的电子驱蚊器程序,通过调用频率发出声音.
💻 H
字号:
/*
* ============================================================================
*  Name     : CLustrationApp from LustrationApp.h
*  Part of  : Lustration
*  Created  : 2006-03-16 by 
*  Description:
*     Declares main application class.
*  Version  :
*  Copyright: 
* ============================================================================
*/

#ifndef LUSTRATIONAPP_H
#define LUSTRATIONAPP_H

// INCLUDES
#include <aknapp.h>

// CONSTANTS
// UID of the application
const TUid KUidLustration = { 0x02F70EA1 };

// CLASS DECLARATION

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

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

#endif

// End of File

⌨️ 快捷键说明

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