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