www.pudn.com > Bluetooth_PMP_Example_v1_0.zip > BluetoothPMPExampleApp.cpp


/* 
* ============================================================================ 
*  Name     : CBluetoothPMPExampleApp from BluetoothPMPExampleApp.cpp 
*  Part of  : BluetoothPMPExample 
*  Created  : 14.01.2004 by Forum Nokia 
*  Implementation notes: 
*     Initial content was generated by Series 60 AppWizard. 
*  Version  : 
*  Copyright: Nokia Corporation 
* ============================================================================ 
*/ 
 
// INCLUDE FILES 
#include    "BluetoothPMPExampleApp.h" 
#include    "BluetoothPMPExampleDocument.h" 
 
 
// ---------------------------------------------------------------------------- 
// CBluetoothPMPExampleApp::AppDllUid() 
// 
// returns application UID 
// ---------------------------------------------------------------------------- 
TUid CBluetoothPMPExampleApp::AppDllUid() const 
    { 
    return KUidBluetoothPMPExample; 
    } 
 
    
// ---------------------------------------------------------------------------- 
// CBluetoothPMPExampleApp::CreateDocumentL() 
// 
// creates CBluetoothPMPExampleDocument object 
// ---------------------------------------------------------------------------- 
CApaDocument* CBluetoothPMPExampleApp::CreateDocumentL() 
    { 
    return CBluetoothPMPExampleDocument::NewL( *this ); 
    } 
 
 
// ---------------------------------------------------------------------------- 
// NewApplication()  
// 
// constructs CBluetoothPMPExampkeApp 
// ---------------------------------------------------------------------------- 
EXPORT_C CApaApplication* NewApplication() 
    { 
    return new CBluetoothPMPExampleApp; 
    } 
 
// ---------------------------------------------------------------------------- 
// E32Dll(TDllReason)  
// 
// entry point function for EPOC Apps 
// ---------------------------------------------------------------------------- 
GLDEF_C TInt E32Dll( TDllReason ) 
    { 
    return KErrNone; 
    } 
 
// End of File