📄 smssendtestdocument.cpp
字号:
/*
============================================================================
Name : CSmsSendTestDocument from SmsSendTestDocument.h
Author :
Version :
Copyright : Your copyright notice
Description : CSmsSendTestDocument implementation
============================================================================
*/
// INCLUDE FILES
#include "SmsSendTestDocument.h"
#include "SmsSendTestAppui.h"
// ================= MEMBER FUNCTIONS =======================
// constructor
CSmsSendTestDocument::CSmsSendTestDocument(CEikApplication& aApp)
: CAknDocument(aApp)
{
}
// destructor
CSmsSendTestDocument::~CSmsSendTestDocument()
{
}
// EPOC default constructor can leave.
void CSmsSendTestDocument::ConstructL()
{
}
// Two-phased constructor.
CSmsSendTestDocument* CSmsSendTestDocument::NewL(
CEikApplication& aApp) // CSmsSendTestApp reference
{
CSmsSendTestDocument* self = new (ELeave) CSmsSendTestDocument( aApp );
CleanupStack::PushL( self );
self->ConstructL();
CleanupStack::Pop();
return self;
}
// ----------------------------------------------------
// CSmsSendTestDocument::CreateAppUiL()
// constructs CSmsSendTestAppUi
// ----------------------------------------------------
//
CEikAppUi* CSmsSendTestDocument::CreateAppUiL()
{
return new (ELeave) CSmsSendTestAppUi;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -