bluetoothengine_extensibleplugindocument.cpp

来自「Symbian C++ 蓝牙例程」· C++ 代码 · 共 50 行

CPP
50
字号
/* ====================================================================
 * 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 + =
减小字号Ctrl + -
显示快捷键?