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

📄 clientdocument.cpp

📁 symbian os手机程序开发
💻 CPP
字号:
/*
 * ============================================================================
 *  Name     : CClientDocument of ClientDocument.cpp
 *  Part of  : HTTP Client Example
 *  Created  : 06/20/2006 by Forum Nokia
 *  Version  : 2.0
 *  Copyright: Forum Nokia
 * ============================================================================
 */

#include "ClientAppUi.h"
#include "ClientDocument.h"

// ----------------------------------------------------------------------------
// CClientDocument::NewL()
//
// Creates instance of CClientDocument.
// ----------------------------------------------------------------------------
CClientDocument* CClientDocument::NewL(CEikApplication& aApp)
	{
    CClientDocument* self = NewLC(aApp);
    CleanupStack::Pop(self);
    return self;
	}

// ----------------------------------------------------------------------------
// CClientDocument::NewLC()
//
// Creates instance of CClientDocument.
// ----------------------------------------------------------------------------
CClientDocument* CClientDocument::NewLC(CEikApplication& aApp)
	{
    CClientDocument* self = new (ELeave) CClientDocument(aApp);
    CleanupStack::PushL(self);
    self->ConstructL();
    return self;
	}

// ----------------------------------------------------------------------------
// CClientDocument::ConstructL()
//
// Second phase construction.
// ----------------------------------------------------------------------------
void CClientDocument::ConstructL()
	{
	}

// ----------------------------------------------------------------------------
// CClientDocument::CClientDocument()
//
// First phase construction.
// ----------------------------------------------------------------------------
CClientDocument::CClientDocument(CEikApplication& aApp)
: CAknDocument(aApp)
	{
	}

// ----------------------------------------------------------------------------
// CClientDocument::~CClientDocument()
//
// Destructor.
// ----------------------------------------------------------------------------
CClientDocument::~CClientDocument()
	{
	}

// ----------------------------------------------------------------------------
// CClientDocument::CreateAppUiL()
//
// Creates the application user interface, and returns a pointer to it;
// the framework takes ownership of this object
// ----------------------------------------------------------------------------
CEikAppUi* CClientDocument::CreateAppUiL()
	{
	return (static_cast <CEikAppUi*> (new (ELeave) CClientAppUi));
	}

// end of file

⌨️ 快捷键说明

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