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

📄 readicodocument.cpp

📁 symbian 平台下
💻 CPP
字号:
/*
 ============================================================================
 Name		: ReadICODocument.cpp
 Author	  : 
 Copyright   : Your copyright notice
 Description : CReadICODocument implementation
 ============================================================================
 */

// INCLUDE FILES
#include "ReadICOAppUi.h"
#include "ReadICODocument.h"

// ============================ MEMBER FUNCTIONS ===============================

// -----------------------------------------------------------------------------
// CReadICODocument::NewL()
// Two-phased constructor.
// -----------------------------------------------------------------------------
//
CReadICODocument* CReadICODocument::NewL(CEikApplication& aApp)
	{
	CReadICODocument* self = NewLC(aApp);
	CleanupStack::Pop(self);
	return self;
	}

// -----------------------------------------------------------------------------
// CReadICODocument::NewLC()
// Two-phased constructor.
// -----------------------------------------------------------------------------
//
CReadICODocument* CReadICODocument::NewLC(CEikApplication& aApp)
	{
	CReadICODocument* self = new ( ELeave ) CReadICODocument( aApp );

	CleanupStack::PushL(self);
	self->ConstructL();
	return self;
	}

// -----------------------------------------------------------------------------
// CReadICODocument::ConstructL()
// Symbian 2nd phase constructor can leave.
// -----------------------------------------------------------------------------
//
void CReadICODocument::ConstructL()
	{
	// No implementation required
	}

// -----------------------------------------------------------------------------
// CReadICODocument::CReadICODocument()
// C++ default constructor can NOT contain any code, that might leave.
// -----------------------------------------------------------------------------
//
CReadICODocument::CReadICODocument(CEikApplication& aApp) :
	CAknDocument(aApp)
	{
	// No implementation required
	}

// ---------------------------------------------------------------------------
// CReadICODocument::~CReadICODocument()
// Destructor.
// ---------------------------------------------------------------------------
//
CReadICODocument::~CReadICODocument()
	{
	// No implementation required
	}

// ---------------------------------------------------------------------------
// CReadICODocument::CreateAppUiL()
// Constructs CreateAppUi.
// ---------------------------------------------------------------------------
//
CEikAppUi* CReadICODocument::CreateAppUiL()
	{
	// Create the application user interface, and return a pointer to it;
	// the framework takes ownership of this object
	return new ( ELeave )CReadICOAppUi;
	}

// End of File

⌨️ 快捷键说明

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