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

📄 blinkapp.h

📁 基于Symbian OS的手机开发与应用实践第12章代码。主要讲各种时钟
💻 H
字号:
/*
* ============================================================================
*  Name     : CBlinkApp from BlinkApp.h
*  Part of  : Blink
*  Created  : 05.02.2006 by ToBeReplacedByAuthor
*  Description:
*     Declares main application class.
*  Version  :
*  Copyright: ToBeReplacedByCopyright
* ============================================================================
*/

#ifndef BLINKAPP_H
#define BLINKAPP_H

// INCLUDES
#include <aknapp.h>

// CONSTANTS
// UID of the application
const TUid KUidBlink = { 0x0C53E639 };

// CLASS DECLARATION

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

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

#endif

// End of File

⌨️ 快捷键说明

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