⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lvtetrisapp.h

📁 俄罗斯方块
💻 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 + -