summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NNI.h
Unidiff
Diffstat (limited to 'noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NNI.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NNI.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NNI.h b/noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NNI.h
new file mode 100644
index 0000000..a21f574
--- a/dev/null
+++ b/noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NNI.h
@@ -0,0 +1,43 @@
1#ifndef BLUETOOTHBNEP_H
2#define BLUETOOTHBNEP_H
3
4#include <netnode.h>
5#include "bluetoothBNEPdata.h"
6#include "bluetoothBNEPrun.h"
7
8class BluetoothBNEPNetNode;
9class BluetoothBNEPEdit;
10
11class ABluetoothBNEP : public ANetNodeInstance {
12
13public :
14
15 ABluetoothBNEP( BluetoothBNEPNetNode * PNN );
16
17 QWidget * edit( QWidget * parent );
18 QString acceptable( void );
19 void commit( void );
20
21 RuntimeInfo * runtime( void )
22 { if( RT == 0 )
23 RT = new BluetoothBNEPRun( this, Data );
24 return RT;
25 }
26
27 virtual void * data( void )
28 { return (void *)&Data; }
29
30protected :
31
32 virtual void setSpecificAttribute( QString & Attr, QString & Value );
33 virtual void saveSpecificAttribute( QTextStream & TS );
34
35private :
36
37 BluetoothBNEPEdit * GUI;
38 BluetoothBNEPData Data;
39 BluetoothBNEPRun * RT;
40
41};
42
43#endif