📄 aknexformapp.h
字号:
/* Copyright (c) 2005, Nokia. All rights reserved */
#ifndef __AKNEXFORMAPP_H__
#define __AKNEXFORMAPP_H__
// INCLUDES
#include <aknapp.h>
// CONSTANTS
const TUid KUidAknExForm = { 0x10005C33 }; // UID of the application
// CLASS DECLARATION
/**
* CAknExFormApplication application class.
* Provides factory to create concrete document object.
*/
class CAknExFormApplication : public CAknApplication
{
private: // From CApaApplication
/**
* From CApaApplication, CreateDocumentL.
* Creates CAknExFormDocument document object.
* @return A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
/**
* From CApaApplication, AppDllUid.
* Returns application's UID ( KUidAknExForm ).
* @return The value of KUidAknExForm.
*/
TUid AppDllUid() const;
};
#endif // __AKNEXFORMAPP_H__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -