📄 smsexampledocument.cpp
字号:
/*
* ============================================================================
* Name : CSMSExampleDocument from SMSExampleDocument.h
* Part of : SMSExample
* Created : 08.02.2005 by Forum Nokia
* Implementation notes:
* Initial content was generated by Series 60 Application Wizard.
* Version : 1.0
* Copyright: Nokia Corporation
* ============================================================================
*/
// INCLUDE FILES
#include "SMSExampleDocument.h"
#include "SMSExampleAppui.h"
// ================= MEMBER FUNCTIONS =======================
// constructor
CSMSExampleDocument::CSMSExampleDocument(CEikApplication& aApp)
: CAknDocument(aApp)
{
}
// destructor
CSMSExampleDocument::~CSMSExampleDocument()
{
}
// EPOC default constructor can leave.
void CSMSExampleDocument::ConstructL()
{
}
// Two-phased constructor.
CSMSExampleDocument* CSMSExampleDocument::NewL(
CEikApplication& aApp) // CSMSExampleApp reference
{
CSMSExampleDocument* self = new (ELeave) CSMSExampleDocument( aApp );
CleanupStack::PushL( self );
self->ConstructL();
CleanupStack::Pop();
return self;
}
// ----------------------------------------------------
// CSMSExampleDocument::CreateAppUiL()
// constructs CSMSExampleAppUi
// ----------------------------------------------------
//
CEikAppUi* CSMSExampleDocument::CreateAppUiL()
{
return new (ELeave) CSMSExampleAppUi;
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -