summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/usb/usb_NNI.h
Unidiff
Diffstat (limited to 'noncore/settings/networksettings2/usb/usb_NNI.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/networksettings2/usb/usb_NNI.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/noncore/settings/networksettings2/usb/usb_NNI.h b/noncore/settings/networksettings2/usb/usb_NNI.h
new file mode 100644
index 0000000..b09f17a
--- a/dev/null
+++ b/noncore/settings/networksettings2/usb/usb_NNI.h
@@ -0,0 +1,44 @@
1#ifndef USB_H
2#define USB_H
3
4#include <netnode.h>
5#include "usbdata.h"
6#include "usbrun.h"
7
8class USBNetNode;
9class USBEdit;
10
11class AUSB : public ANetNodeInstance {
12
13public :
14
15 AUSB( USBNetNode * 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 USBRun( this, Data );
24 return RT;
25 }
26
27 virtual void * data( void )
28 { return (void *)&Data; }
29
30 bool generateDataForCommonFile( SystemFile & S, long DevNr );
31
32protected :
33
34 virtual void setSpecificAttribute( QString & Attr, QString & Value );
35 virtual void saveSpecificAttribute( QTextStream & TS );
36
37private :
38
39 USBEdit * GUI;
40 USBData Data;
41 USBRun * RT;
42};
43
44#endif