📄 stackdocument.h
字号:
/*
========================================================================
Name : StackDocument.h
Author :
Copyright : Your copyright notice
Description :
========================================================================
*/
#ifndef STACKDOCUMENT_H
#define STACKDOCUMENT_H
#include <akndoc.h>
class CEikAppUi;
/**
* @class CStackDocument StackDocument.h
* @brief A CAknDocument-derived class is required by the S60 application
* framework. It is responsible for creating the AppUi object.
*/
class CStackDocument : public CAknDocument
{
public:
// constructor
static CStackDocument* NewL( CEikApplication& aApp );
private:
// constructors
CStackDocument( CEikApplication& aApp );
void ConstructL();
public:
// from base class CEikDocument
CEikAppUi* CreateAppUiL();
};
#endif // STACKDOCUMENT_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -