viewexdocument.h

来自「Symbian OS C++ 手机应用开发(第一卷)部分事例代码」· C头文件 代码 · 共 59 行

H
59
字号
/*
* ============================================================================
*  Name     : CViewExDocument from ViewExDocument.h
*  Part of  : ViewEx
*  Description:
*     Declares document for application.

*  Copyright (c) 2004 Symbian Software Ltd. All rights reserved.
* ============================================================================
*/

#ifndef VIEWEXDOCUMENT_H
#define VIEWEXDOCUMENT_H

// INCLUDES
#include <eikdoc.h>
   
// CONSTANTS

// FORWARD DECLARATIONS
class  CEikAppUi;

// CLASS DECLARATION

/**
*  CViewExDocument application class.
*/
class CViewExDocument : public CEikDocument
    {
public: // Constructors and destructor
	/**
	* Two-phased constructor.
	*/
	static CViewExDocument* NewL(CEikApplication& aApp);

	/**
	* Destructor.
	*/
	virtual ~CViewExDocument();

private:
	/**
	* EPOC default constructor.
	*/
	CViewExDocument(CEikApplication& aApp);
	void ConstructL();

private:
	/**
	* From CEikDocument, create CViewExAppUi "App UI" object.
	*/
	CEikAppUi* CreateAppUiL();
    };

#endif

// End of File

⌨️ 快捷键说明

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