?? sendasexampledocument.cpp
字號:
/**
*
* @brief Definition of CSendAs ExampleApplication
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
// INCLUDE FILES
#include "SendAsExampleDocument.h"
#include "SendAsExampleAppUi.h"
// ================= MEMBER FUNCTIONS =======================
// constructor
CSendAsExampleDocument::CSendAsExampleDocument(CEikApplication& aApp)
: CAknDocument(aApp)
{
}
// destructor
CSendAsExampleDocument::~CSendAsExampleDocument()
{
}
// EPOC default constructor can leave.
void CSendAsExampleDocument::ConstructL()
{
}
// Two-phased constructor.
CSendAsExampleDocument* CSendAsExampleDocument::NewL(
CEikApplication& aApp) // CSendAsExampleApp reference
{
CSendAsExampleDocument* self = new (ELeave) CSendAsExampleDocument( aApp );
CleanupStack::PushL( self );
self->ConstructL();
CleanupStack::Pop();
return self;
}
// ----------------------------------------------------
// CSendAsExampleDocument::CreateAppUiL()
// constructs CSendAsExampleAppUi
// ----------------------------------------------------
//
CEikAppUi* CSendAsExampleDocument::CreateAppUiL()
{
return new (ELeave) CSendAsExampleAppUi;
}
// End of File
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -