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

📄 point24application.h

📁 symbian平台下的24点游戏编程 很适合初学者的例子
💻 H
字号:
/*
========================================================================
 Name        : Point24Application.h
 Author      : luomao2000
 Copyright   : luomao2000@tom.com
Reserved
 Description : 
========================================================================
*/
#ifndef POINT24APPLICATION_H
#define POINT24APPLICATION_H

#include <aknapp.h>

const TUid KUidPoint24Application = { 0xE5E0675A };

/**
 *
 * @class	CPoint24Application Point24Application.h
 * @brief	A CAknApplication-derived class is required by the S60 application 
 *          framework. It is subclassed to create the application's document 
 *          object.
 */
class CPoint24Application : public CAknApplication
	{
private:
	TUid AppDllUid() const;
	CApaDocument* CreateDocumentL();
	
	};
			
#endif // POINT24APPLICATION_H		

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -