From 9aeac7cefc3c8baf32944e7275b57e0a0cde1515 Mon Sep 17 00:00:00 2001 From: wimpie Date: Mon, 05 Apr 2004 22:58:06 +0000 Subject: Add save of node specific config data --- (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 index 3d1aa69..4579e37 100644 --- a/noncore/settings/networksettings2/bluetooth/bluetooth_NN.cpp +++ b/noncore/settings/networksettings2/bluetooth/bluetooth_NN.cpp @@ -16,6 +16,7 @@ static const char * BluetoothBNEPNeeds[] = * Constructor, find all of the possible interfaces */ BluetoothBNEPNetNode::BluetoothBNEPNetNode() : ANetNode() { + InstanceCount = 7; // default } /** @@ -64,9 +65,22 @@ QString BluetoothBNEPNetNode::genNic( long nr ) { return S.sprintf( "bnep%ld", nr ); } + +void BluetoothBNEPNetNode::setSpecificAttribute( QString & A, QString & V ) { + if( A == "interfacecount" ) { + InstanceCount = V.toLong(); + } +} + +void BluetoothBNEPNetNode::saveSpecificAttribute( QTextStream & TS) { + TS << "interfacecount=" + << InstanceCount + << endl; +} + // // -// BLUETOOTH PAN/NAP node +// BLUETOOTH RFCOMM // // @@ -115,6 +129,12 @@ bool BluetoothRFCOMMNetNode::generateDeviceDataForCommonFile( return 0; } +void BluetoothRFCOMMNetNode::setSpecificAttribute( QString &, QString & ) { +} + +void BluetoothRFCOMMNetNode::saveSpecificAttribute( QTextStream & ) { +} + extern "C" { void create_plugin( QList & PNN ) { PNN.append( new BluetoothBNEPNetNode() ); -- cgit v0.9.0.2