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

📄 exampleclientapplication.cpp

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

#include "ExampleClientDocument.h"
#include "ExampleClientApplication.h"

// UID for the application; this should correspond to the uid defined in 
// the mmp file
const TUid KUidExampleClientApp = {0x101F5463};

// ----------------------------------------------------------------------------
// CExampleClientApplication::CreateDocumentL()
//
// Creates an ExampleClient document, and returns a pointer to it
// ----------------------------------------------------------------------------
CApaDocument* CExampleClientApplication::CreateDocumentL()
	{
	return (static_cast<CApaDocument*>(CExampleClientDocument::NewL(*this))); 
	}

// ----------------------------------------------------------------------------
// CExampleClientApplication::AppDllUid()
// 
// Returns the UID for the ExampleClient application
// ----------------------------------------------------------------------------
TUid CExampleClientApplication::AppDllUid() const
	{
    return KUidExampleClientApp;
	}

⌨️ 快捷键说明

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