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