⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bluetoothpmpexampleapp.cpp

📁 symbian系统下
💻 CPP
字号:
/*
* ============================================================================
*  Name     : CBluetoothPMPExampleApp from BluetoothPMPExampleApp.cpp
*  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    "BluetoothPMPExampleApp.h"
#include    "BluetoothPMPExampleDocument.h"

#ifdef __SERIES60_3X__
    #include <eikstart.h>
#endif //  __SERIES60_3X__

// ----------------------------------------------------------------------------
// 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
// ----------------------------------------------------------------------------
#ifndef __SERIES60_3X__
GLDEF_C TInt E32Dll( TDllReason )
    {
    return KErrNone;
    }
#else
GLDEF_C TInt E32Main()
    {
    return EikStart::RunApplication(NewApplication);
    }
#endif //  __SERIES60_3X__

// End of File  

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -