chinesedisplayapp.h
来自「symbian的Carbide C++编程」· C头文件 代码 · 共 49 行
H
49 行
/*
* ============================================================================
* Name : CChineseDisplayApp from CChineseDisplayApp.h
* Part of : CChineseDisplayApp
* Created : 18.3.2003 by Forum Nokia
* Implementation notes:
* Version :
* Copyright: Nokia Corporation, 2003
* ============================================================================
*/
#ifndef CHINESE_DISPLAY_APP_APP_H
#define CHINESE_DISPLAY_APP_APP_H
#include <aknapp.h>
// UID of the application
const TUid KUidChineseDisplay = { 0x01EF0029 };
/**
* CChineseDisplayAppApp application class.
* Provides factory to create concrete document object.
*
*/
class CChineseDisplayApp : public CAknApplication
{
public: // Functions from base classes
private:
/**
* From CApaApplication, creates CChineseDisplayAppDocument document object.
* @return A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
/**
* From CApaApplication, returns application's UID (KUidCChineseDisplayApp).
* @return The value of KUidCChineseDisplayApp.
*/
TUid AppDllUid() const;
};
#endif
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?