exampleclientapplication.cpp

来自「symbian os c/c++ 手机客户端使用HTTP通信例子」· C++ 代码 · 共 41 行

CPP
41
字号
/*
 * ============================================================================
 *  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 + =
减小字号Ctrl + -
显示快捷键?