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