summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NNI.h
blob: 1bf0f4899df7ddea6fc8a5e1d27eb2652e9a548a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef BLUETOOTHBNEP_H
#define BLUETOOTHBNEP_H

#include <netnode.h>
#include "bluetoothBNEPdata.h"
#include "bluetoothBNEPrun.h"

class BluetoothBNEPNetNode;
class BluetoothBNEPEdit;

class ABluetoothBNEP : public ANetNodeInstance {

public :

      ABluetoothBNEP( BluetoothBNEPNetNode * PNN );

      RuntimeInfo * runtime( void ) 
        { return 
           ( RT ) ? RT : ( RT = new BluetoothBNEPRun( this, Data ) );
        }

      QWidget * edit( QWidget * parent );
      QString acceptable( void );
      void commit( void );

      virtual void * data( void )
        { return (void *)&Data; }

protected :

      virtual void setSpecificAttribute( QString & Attr, QString & Value );
      virtual void saveSpecificAttribute( QTextStream & TS );

private :

      BluetoothBNEPEdit * GUI;
      BluetoothBNEPData Data;
      BluetoothBNEPRun * RT;

};

#endif