00001 /* 00002 * Copyright © 2009 Nokia Corporation. 00003 */ 00004 00005 // INCLUDE FILES 00006 #include "BluetoothPMPExampleDocument.h" 00007 #include "BluetoothPMPExampleAppUi.h" 00008 00009 00010 CBluetoothPMPExampleDocument* CBluetoothPMPExampleDocument::NewL( 00011 CEikApplication& aApp) // CBluetoothPMPExampleApp reference 00012 { 00013 CBluetoothPMPExampleDocument* self = 00014 new (ELeave) CBluetoothPMPExampleDocument( aApp ); 00015 CleanupStack::PushL(self); 00016 self->ConstructL(); 00017 CleanupStack::Pop(self); 00018 00019 return self; 00020 } 00021 00022 00023 // ---------------------------------------------------------------------------- 00024 // CBluetoothPMPExampleDocument::CBluetoothPMPExampleDocument(CEikApplication& 00025 // aApp) 00026 // 00027 // constructor 00028 // ---------------------------------------------------------------------------- 00029 CBluetoothPMPExampleDocument::CBluetoothPMPExampleDocument( 00030 CEikApplication& aApp): CAknDocument(aApp) 00031 { 00032 } 00033 00034 00035 // ---------------------------------------------------------------------------- 00036 // CBluetoothPMPExampleDocument::~CBluetoothPMPExampleDocument() 00037 // 00038 // destructor 00039 // ---------------------------------------------------------------------------- 00040 CBluetoothPMPExampleDocument::~CBluetoothPMPExampleDocument() 00041 { 00042 } 00043 00044 00045 // ---------------------------------------------------------------------------- 00046 // CBluetoothPMPExampleDocument::ConstructL() 00047 // 00048 // Standard EPOC 2nd phase constructor 00049 // ---------------------------------------------------------------------------- 00050 void CBluetoothPMPExampleDocument::ConstructL() 00051 { 00052 } 00053 00054 00055 // ---------------------------------------------------------------------------- 00056 // CBluetoothPMPExampleDocument::CreateAppUiL() 00057 // 00058 // constructs CBluetoothPMPExampleAppUi 00059 // ---------------------------------------------------------------------------- 00060 CEikAppUi* CBluetoothPMPExampleDocument::CreateAppUiL() 00061 { 00062 return new (ELeave) CBluetoothPMPExampleAppUi; 00063 } 00064 00065 // End of File