point24document.h
来自「symbian平台下的24点游戏编程 很适合初学者的例子」· C头文件 代码 · 共 38 行
H
38 行
/*
========================================================================
Name : Point24Document.h
Author : luomao2000
Copyright : luomao2000@tom.com
Reserved
Description :
========================================================================
*/
#ifndef POINT24DOCUMENT_H
#define POINT24DOCUMENT_H
#include <akndoc.h>
class CEikAppUi;
/**
* @class CPoint24Document Point24Document.h
* @brief A CAknDocument-derived class is required by the S60 application
* framework. It is responsible for creating the AppUi object.
*/
class CPoint24Document : public CAknDocument
{
public:
// constructor
static CPoint24Document* NewL( CEikApplication& aApp );
private:
// constructors
CPoint24Document( CEikApplication& aApp );
void ConstructL();
public:
// from base class CEikDocument
CEikAppUi* CreateAppUiL();
};
#endif // POINT24DOCUMENT_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?