t1document.h

来自「s60菜单的应用,list menu items」· C头文件 代码 · 共 37 行

H
37
字号
/*
========================================================================
 Name        : t1Document.h
 Author      : 
 Copyright   : Your copyright notice
 Description : 
========================================================================
*/
#ifndef T1DOCUMENT_H
#define T1DOCUMENT_H

#include <akndoc.h>
		
class CEikAppUi;

/**
* @class	Ct1Document t1Document.h
* @brief	A CAknDocument-derived class is required by the S60 application 
*           framework. It is responsible for creating the AppUi object. 
*/
class Ct1Document : public CAknDocument
	{
public: 
	// constructor
	static Ct1Document* NewL( CEikApplication& aApp );

private: 
	// constructors
	Ct1Document( CEikApplication& aApp );
	void ConstructL();
	
public: 
	// from base class CEikDocument
	CEikAppUi* CreateAppUiL();
	};
#endif // T1DOCUMENT_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?