example2ddocument.h
来自「基于SYMBIAN OS,series 60平台的经典游戏,超级马力」· C头文件 代码 · 共 50 行
H
50 行
/*
* ============================================================================
* Name : CExample2DDocument from Example2DDocument.h
* Part of : Example2D
* Created : 23.09.2005 by
* Description:
* Declares document for application.
* Version :
* Copyright:
* ============================================================================
*/
#ifndef EXAMPLE2DDOCUMENT_H
#define EXAMPLE2DDOCUMENT_H
// INCLUDES
#include <eikdoc.h>
// CONSTANTS
// FORWARD DECLARATIONS
class CEikAppUi;
class CEikApplication;
// CLASS DECLARATION
/**
* CExample2DDocument application class.
*/
class CExample2DDocument : public CEikDocument
{
public: // Constructors and destructor
static CExample2DDocument* NewL(CEikApplication& aApp);
virtual ~CExample2DDocument();
private:
CExample2DDocument(CEikApplication& aApp);
void ConstructL();
private:
CEikAppUi* CreateAppUiL();
};
#endif
// End of file
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?