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

📄 exampleclientapplication.h

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

#ifndef __EXAMPLECLIENT_APPLICATION_H__
#define __EXAMPLECLIENT_APPLICATION_H__

#include <aknapp.h>

class CExampleClientApplication : public CAknApplication
    {
/*
* From CAknApplication
*/
public:
	/*
	* AppDllUid()
	*	
	* Returns the UID for the ExampleClient application
	*
	* Params: 
	*		-
	* 
	* Returns:
	* 		UID of the application.
	*
	*/
    TUid AppDllUid() const;

/*
* From CAknApplication
*/
protected:
	/*
	* CreateDocumentL()
	*
	* Creates new document and returns pointer to it. Called by the application
	* DLL framework to create a new instance of the document associated with this
	* application.
	*
	* Params:
	*		-
	*
	* Returns:
	* 		-
	*
	*/
    CApaDocument*	CreateDocumentL();
    };

#endif // __EXAMPLECLIENT_APPLICATION_H__

⌨️ 快捷键说明

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