📄 lvtetrisapp.h
字号:
/*
============================================================================
Name : LvTetrisApp.h
Author : lvky@cn.fujitsu.com
Copyright : Lvky All copyright
Description : Declares main application class.
============================================================================
*/
#ifndef LVTETRISAPP_H
#define LVTETRISAPP_H
// INCLUDES
#include <aknapp.h>
// CONSTANTS
// UID of the application
const TUid KUidLvTetris = { 0x078DA8A9 };
// CLASS DECLARATION
/**
* CLvTetrisApp application class.
* Provides factory to create concrete document object.
*
*/
class CLvTetrisApp : public CAknApplication
{
public: // Functions from base classes
private:
/**
* From CApaApplication, creates CLvTetrisDocument document object.
* @return A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
/**
* From CApaApplication, returns application's UID (KUidLvTetris).
* @return The value of KUidLvTetris.
*/
TUid AppDllUid() const;
};
#endif // LVTETRISAPP_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -