rtxapp.h
来自「symbian系统」· C头文件 代码 · 共 53 行
H
53 行
/*
* ============================================================================
* Name : CRTxApp from RTxApp.h
* Part of : RTx
* Created : 2003. 08. 15. by (V) - Forum Nokia
* Description:
* Declares main application class.
* Version :
* Copyright: Forum Nokia
* ============================================================================
*/
#ifndef RTXAPP_H
#define RTXAPP_H
// INCLUDES
#include <aknapp.h>
// CONSTANTS
// UID of the application
const TUid KUidRTx = { 0x01EF0030 };
// CLASS DECLARATION
/**
* CRTxApp application class.
* Provides factory to create concrete document object.
*
*/
class CRTxApp : public CAknApplication
{
public: // Functions from base classes
private:
/**
* From CApaApplication, creates CRTxDocument document object.
* @return A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
/**
* From CApaApplication, returns application's UID (KUidRTx).
* @return The value of KUidRTx.
*/
TUid AppDllUid() const;
};
#endif
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?