?? threadaodocument.cpp
字號:
/*
* ============================================================================
* Name : CThreadAODocument from ThreadAODocument.h
* Part of : ThreadAO
* Created : 12.1.2005 by Forum Nokia
* Version : 1.0
* Copyright: Nokia Corporation
* ============================================================================
*/
// INCLUDES
#include "ThreadAOAppUi.h"
#include "ThreadAODocument.h"
#include <aknnotewrappers.h>
CThreadAODocument* CThreadAODocument::NewL(CEikApplication& aApp)
{
CThreadAODocument* self = NewLC(aApp);
CleanupStack::Pop(self);
return self;
}
CThreadAODocument* CThreadAODocument::NewLC(CEikApplication& aApp)
{
CThreadAODocument* self = new (ELeave) CThreadAODocument(aApp);
CleanupStack::PushL(self);
self->ConstructL();
return self;
}
// ----------------------------------------------------------------------------
// CThreadAODocument::ConstructL()
//
// Standard Symbian OS 2nd phase constructor
// ----------------------------------------------------------------------------
void CThreadAODocument::ConstructL()
{
// No implementation required
}
// ----------------------------------------------------------------------------
// CThreadAODocument::CThreadAODocument(CEikApplication& aApp)
//
// Constructor.
// ----------------------------------------------------------------------------
CThreadAODocument::CThreadAODocument(CEikApplication& aApp) : CAknDocument(aApp)
{
}
// ----------------------------------------------------------------------------
// CThreadAODocument::~CThreadAODocument()
//
// Destructor.
// ----------------------------------------------------------------------------
CThreadAODocument::~CThreadAODocument()
{
}
// ----------------------------------------------------------------------------
// CThreadAODocument::CreateAppUiL()
//
// Constructs CThreadAOAppUi.
// ----------------------------------------------------------------------------
CEikAppUi* CThreadAODocument::CreateAppUiL()
{
// Create the application user interface, and return a pointer to it;
// the framework takes ownership of this object
return (static_cast <CEikAppUi*> (new (ELeave) CThreadAOAppUi));
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -