📄 wlansampleexdocument.cpp
字号:
/* ====================================================================
* File: WLanSampleExDocument.cpp
* Created: 01/19/07
* Author:
* Copyright (c): , All rights reserved
* ==================================================================== */
#include "WLanSampleExAppUi.h"
#include "WLanSampleExDocument.h"
// Standard Symbian OS construction sequence
CWLanSampleExDocument* CWLanSampleExDocument::NewL(CEikApplication& aApp)
{
CWLanSampleExDocument* self = NewLC(aApp);
CleanupStack::Pop(self);
return self;
}
CWLanSampleExDocument* CWLanSampleExDocument::NewLC(CEikApplication& aApp)
{
CWLanSampleExDocument* self = new (ELeave) CWLanSampleExDocument(aApp);
CleanupStack::PushL(self);
self->ConstructL();
return self;
}
void CWLanSampleExDocument::ConstructL()
{
// no implementation required
}
CWLanSampleExDocument::CWLanSampleExDocument(CEikApplication& aApp) : CAknDocument(aApp)
{
// no implementation required
}
CWLanSampleExDocument::~CWLanSampleExDocument()
{
// no implementation required
}
CEikAppUi* CWLanSampleExDocument::CreateAppUiL()
{
// Create the application user interface, and return a pointer to it,
// the framework takes ownership of this object
CEikAppUi* appUi = new (ELeave) CWLanSampleExAppUi;
return appUi;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -