point24application.h

来自「symbian平台下的24点游戏编程 很适合初学者的例子」· C头文件 代码 · 共 33 行

H
33
字号
/*
========================================================================
 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 + =
减小字号Ctrl + -
显示快捷键?