📄 aknexqueryapp.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 + -