📄 example2ddocument.h
字号:
/*
============================================================================
* Name : CExample2DDocument.h
* Part of : 2DExample
* Description : Definition of CExample2DDocument
* Copyright (c) 2007 Nokia Corporation
============================================================================
*/
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -