summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NNI.cpp
Unidiff
Diffstat (limited to 'noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NNI.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NNI.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NNI.cpp b/noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NNI.cpp
new file mode 100644
index 0000000..1743c1d
--- a/dev/null
+++ b/noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NNI.cpp
@@ -0,0 +1,29 @@
1#include "bluetoothBNEPedit.h"
2#include "bluetoothBNEP_NNI.h"
3#include "bluetooth_NN.h"
4
5ABluetoothBNEP::ABluetoothBNEP( BluetoothBNEPNetNode * PNN ) : ANetNodeInstance( PNN ) {
6 GUI = 0;
7 RT = 0;
8}
9
10void ABluetoothBNEP::setSpecificAttribute( QString & , QString & ) {
11}
12
13void ABluetoothBNEP::saveSpecificAttribute( QTextStream & ) {
14}
15
16QWidget * ABluetoothBNEP::edit( QWidget * parent ) {
17 GUI = new BluetoothBNEPEdit( parent );
18 GUI->showData( Data );
19 return GUI;
20}
21
22QString ABluetoothBNEP::acceptable( void ) {
23 return ( GUI ) ? GUI->acceptable( ) : QString();
24}
25
26void ABluetoothBNEP::commit( void ) {
27 if( GUI && GUI->commit( Data ) )
28 setModified( 1 );
29}