helloapp.h

来自「从s60平台移植到UIQ平台的例子代码:In this code we shal」· C头文件 代码 · 共 53 行

H
53
字号
/*
* ============================================================================
*  Name     : CHelloApp from HelloApp.h
*  Part of  : Hello
*  Created  : 21/05/2002 by 
*  Description:
*     Declares main application class.
*  Version  :
*  Copyright: 
* ============================================================================
*/

#ifndef HELLOAPP_H
#define HELLOAPP_H

// INCLUDES
#include <qikapplication.h>

// CONSTANTS
// UID of the application
const TUid KUidHello = { 0x0F948032 };

// CLASS DECLARATION

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

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

#endif

// End of File

⌨️ 快捷键说明

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