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

📄 gitadocument.cpp

📁 Symbian 位图的显示
💻 CPP
字号:
/*
 ============================================================================
 Name		: GitaDocument.cpp
 Author	  : 
 Copyright   : Your copyright notice
 Description : CGitaDocument implementation
 ============================================================================
 */

// INCLUDE FILES
#include "GitaAppUi.h"
#include "GitaDocument.h"

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

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

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

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

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

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

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

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

// End of File

⌨️ 快捷键说明

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