⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stackdocument.h

📁 Symbian 控件的使用
💻 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 + -