From 4ea2f227d3fb0d9591bb4f18555420ac47f3397d Mon Sep 17 00:00:00 2001 From: wimpie Date: Fri, 02 Apr 2004 18:30:55 +0000 Subject: first import of NS2 app --- (limited to 'noncore/settings/networksettings2/bluetooth/bluetooth_NN.cpp') diff --git a/noncore/settings/networksettings2/bluetooth/bluetooth_NN.cpp b/noncore/settings/networksettings2/bluetooth/bluetooth_NN.cpp new file mode 100644 index 0000000..91be153 --- a/dev/null +++ b/noncore/settings/networksettings2/bluetooth/bluetooth_NN.cpp @@ -0,0 +1,120 @@ +#include "bluetooth_NN.h" +#include "bluetoothBNEP_NNI.h" +#include "bluetoothRFCOMM_NNI.h" + +// +// +// BLUETOOTH PAN/NAP node +// +// + +static const char * BluetoothBNEPNeeds[] = + { 0 + }; + +/** + * Constructor, find all of the possible interfaces + */ +BluetoothBNEPNetNode::BluetoothBNEPNetNode() : ANetNode() { +} + +/** + * Delete any interfaces that we own. + */ +BluetoothBNEPNetNode::~BluetoothBNEPNetNode(){ +} + +const QString BluetoothBNEPNetNode::nodeDescription(){ + return tr("\ +

Sets up a bluetooth link using the bluetooth Network profile.

\ +

Use this to connect two computing devices.

\ +" +); +} + +ANetNodeInstance * BluetoothBNEPNetNode::createInstance( void ) { + return new ABluetoothBNEP( this ); +} + +const char ** BluetoothBNEPNetNode::needs( void ) { + return BluetoothBNEPNeeds; +} + +const char * BluetoothBNEPNetNode::provides( void ) { + return "device"; +} + +bool BluetoothBNEPNetNode::generateProperFilesFor( + ANetNodeInstance * ) { + return 1; +} + +bool BluetoothBNEPNetNode::hasDataFor( const QString & ) { + return 0; +} + +bool BluetoothBNEPNetNode::generateDataForCommonFile( + SystemFile & , + long , + ANetNodeInstance * ) { + return 1; +} + +// +// +// BLUETOOTH PAN/NAP node +// +// + +static const char * BluetoothRFCOMMNeeds[] = + { 0 + }; + +BluetoothRFCOMMNetNode::BluetoothRFCOMMNetNode() : ANetNode() { +} + +BluetoothRFCOMMNetNode::~BluetoothRFCOMMNetNode(){ +} + +const QString BluetoothRFCOMMNetNode::nodeDescription(){ + return tr("\ +

Sets up a bluetooth link using the bluetooth serial profile.

\ +

Use this to connect to a GSM.

\ +" +); +} + +ANetNodeInstance * BluetoothRFCOMMNetNode::createInstance( void ) { + return new ABluetoothRFCOMM( this ); +} + +const char ** BluetoothRFCOMMNetNode::needs( void ) { + return BluetoothRFCOMMNeeds; +} + +const char * BluetoothRFCOMMNetNode::provides( void ) { + return "line"; +} + +bool BluetoothRFCOMMNetNode::generateProperFilesFor( + ANetNodeInstance * ) { + return 0; +} + +bool BluetoothRFCOMMNetNode::hasDataFor( const QString & ) { + return 0; +} + +bool BluetoothRFCOMMNetNode::generateDataForCommonFile( + SystemFile & , + long, + ANetNodeInstance * ) { + return 0; +} + +extern "C" { +void create_plugin( QList & PNN ) { + PNN.append( new BluetoothBNEPNetNode() ); + PNN.append( new BluetoothRFCOMMNetNode() ); +} +} -- cgit v0.9.0.2