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

📄 aknexqueryapp.h

📁 symbian中询问对话框生成的源代码 适合初学者使用。
💻 H
字号:
/*  Copyright (c) 2004, Nokia. All rights reserved */

#ifndef __AKNEXQUERYAPP_H__
#define __AKNEXQUERYAPP_H__

// INCLUDES
#include <Aknapp.h>

// CONSTANTS
const TUid KUidAknExQuery = { 0x10005C2B }; // UID of the application

// CLASS DECLARATION

/**
* CAknExQueryApp application class.
* Provides factory to create concrete document object.
*/
class CAknExQueryApp : public CAknApplication
    {
    private: // Form CApalication

        /**
        * CreateDocumentL
        * From CApaApplication, creates CAknExQueryDocument document object.
        * @return A pointer to the created document object.
        */
        CApaDocument* CreateDocumentL();

        /**
        * AppDllUid
        * From CApaApplication, returns application's UID ( KUidAknExQuery ).
        * @return The value of KUidAknExQuery.
        */
        TUid AppDllUid() const;

    };

#endif // __AKNEXQUERYAPP_H__

// End of File

⌨️ 快捷键说明

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