📄 bluetoothpmpexampledocument.cpp
字号:
/*
* ============================================================================
* Name : CBluetoothPMPExampleDocument from BluetoothPMPExampleDocument.h
* Part of : BluetoothPMPExample
* Created : 06.06.2006 by Forum Nokia
* Implementation notes:
* Initial content was generated by Series 60 AppWizard.
* Version :
* Copyright: Nokia Corporation
* ============================================================================
*/
// INCLUDE FILES
#include "BluetoothPMPExampleDocument.h"
#include "BluetoothPMPExampleAppUi.h"
CBluetoothPMPExampleDocument* CBluetoothPMPExampleDocument::NewL(
CEikApplication& aApp) // CBluetoothPMPExampleApp reference
{
CBluetoothPMPExampleDocument* self =
new (ELeave) CBluetoothPMPExampleDocument( aApp );
CleanupStack::PushL(self);
self->ConstructL();
CleanupStack::Pop(self);
return self;
}
// ----------------------------------------------------------------------------
// CBluetoothPMPExampleDocument::CBluetoothPMPExampleDocument(CEikApplication&
// aApp)
//
// constructor
// ----------------------------------------------------------------------------
CBluetoothPMPExampleDocument::CBluetoothPMPExampleDocument(
CEikApplication& aApp): CAknDocument(aApp)
{
}
// ----------------------------------------------------------------------------
// CBluetoothPMPExampleDocument::~CBluetoothPMPExampleDocument()
//
// destructor
// ----------------------------------------------------------------------------
CBluetoothPMPExampleDocument::~CBluetoothPMPExampleDocument()
{
}
// ----------------------------------------------------------------------------
// CBluetoothPMPExampleDocument::ConstructL()
//
// Standard EPOC 2nd phase constructor
// ----------------------------------------------------------------------------
void CBluetoothPMPExampleDocument::ConstructL()
{
}
// ----------------------------------------------------------------------------
// CBluetoothPMPExampleDocument::CreateAppUiL()
//
// constructs CBluetoothPMPExampleAppUi
// ----------------------------------------------------------------------------
CEikAppUi* CBluetoothPMPExampleDocument::CreateAppUiL()
{
return new (ELeave) CBluetoothPMPExampleAppUi;
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -