summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/gprs/GPRS_NN.h
Unidiff
Diffstat (limited to 'noncore/settings/networksettings2/gprs/GPRS_NN.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/networksettings2/gprs/GPRS_NN.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/noncore/settings/networksettings2/gprs/GPRS_NN.h b/noncore/settings/networksettings2/gprs/GPRS_NN.h
new file mode 100644
index 0000000..6a036e1
--- a/dev/null
+++ b/noncore/settings/networksettings2/gprs/GPRS_NN.h
@@ -0,0 +1,43 @@
1#ifndef GPRS_NETNODE_H
2#define GPRS_NETNODE_H
3
4#include "netnode.h"
5
6class ANetwork;
7
8class GPRSNetNode : public ANetNode{
9
10 Q_OBJECT
11
12public:
13
14 GPRSNetNode();
15 virtual ~GPRSNetNode();
16
17 virtual bool hasDataForFile( SystemFile & S );
18
19 virtual short generateFile( SystemFile & Sf,
20 ANetNodeInstance * NNI,
21 long DevNr );
22 virtual const QString pixmapName()
23 { return "Devices/gprs"; }
24
25 virtual QStringList properFiles( void );
26
27 virtual const QString nodeDescription() ;
28 virtual ANetNodeInstance * createInstance( void );
29 virtual const char ** needs( void );
30 virtual const char ** provides( void );
31
32private:
33
34 virtual void setSpecificAttribute( QString & Attr, QString & Value );
35 virtual void saveSpecificAttribute( QTextStream & TS );
36};
37
38extern "C"
39{
40 void create_plugin( QList<ANetNode> & PNN );
41};
42
43#endif