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

📄 exampleclientdocument.h

📁 一个http客户端连接的程序例子
💻 H
字号:
/*
 * ============================================================================
 *  Name     : ExampleClientDocument.h
 *  Part of  : HTTP Example
 *  Created  : 11/14/2003 by Forum Nokia
 *  Implementation notes:
 *
 *     
 *  Version  : 1.0
 *  Copyright: Nokia Corporation
 * ============================================================================
 */

#ifndef __EXAMPLECLIENT_DOCUMENT_H__
#define __EXAMPLECLIENT_DOCUMENT_H__

#include <akndoc.h>

/**
* Forward declarations
*/
class CExampleClientAppUi;
class CEikApplication;

class CExampleClientDocument : public CAknDocument
    {
public:
	/*
	* NewL()
	*  
	* Create a CExampleClientDocument object.
	*
	* Params: 
	*		aApp: Reference to application this document relates.
	* 
	* Returns:
	* 		
	*
	*/
    static CExampleClientDocument* NewL(CEikApplication& aApp);

	/*
	* NewLC()
	*  
	* Create a CExampleClientDocument object.
	*
	* Params: 
	*		aApp: Reference to application this document relates.
	* 
	* Returns:
	* 		
	*
	*/
    static CExampleClientDocument* NewLC(CEikApplication& aApp);

	/*
	* ~CExampleClientDocument()
	*  
	* Destructor for CExampleClientDocument.
	*
	* Params: 
	*		-
	* 
	* Returns:
	* 		-
	*
	*/
    ~CExampleClientDocument();

/*
* From CAknDocument
*/
public:
	/*
	* CreateAppUiL()
	*
	* Creates the application user interface, and returns a pointer to it;
	* the framework takes ownership of this object
	*
	* Params: 
	*		-
	*
	* Returns:
	*		Pointer to created application ui.
	*
	*/
    CEikAppUi* CreateAppUiL();

private:
	/*
	* ConstructL()
	*
	* Second phase construction.
	*
	* Params: 
	*		- 
	* 
	* Returns:
	* 		-
	*
	*/
    void ConstructL();

	/*
	* CExampleClientDocument()
	*
	* First phase construction.
	*
	* Params: 
	*		aApp: Reference to application this document relates.
	* 
	* Returns:
	* 		-
	*
	*/
    CExampleClientDocument(CEikApplication& aApp);

    };


#endif // __EXAMPLECLIENT_DOCUMENT_H__

⌨️ 快捷键说明

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