bluetoothpmpexampledocument.cpp

来自「symbian系统下」· C++ 代码 · 共 74 行

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