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

📄 entrydocument.cpp

📁 Simple database program
💻 CPP
字号:
/*
 ============================================================================
 Name		 : EntryDocument.cpp
 Author	 	 : Sazzad and Mozaharul
 Copyright   : @Encryption 2008
 Description : CEntryDocument implementation
 ============================================================================
 */

// INCLUDE FILES
#include "EntryAppUi.h"
#include "EntryDocument.h"

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

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

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

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

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

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

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

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

// End of File

⌨️ 快捷键说明

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