summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/wlan/wlanimp.h
Unidiff
Diffstat (limited to 'noncore/settings/networksettings/wlan/wlanimp.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/wlan/wlanimp.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/noncore/settings/networksettings/wlan/wlanimp.h b/noncore/settings/networksettings/wlan/wlanimp.h
new file mode 100644
index 0000000..8e355ce
--- a/dev/null
+++ b/noncore/settings/networksettings/wlan/wlanimp.h
@@ -0,0 +1,27 @@
1#ifndef WLANIMP_H
2#define WLANIMP_H
3
4#include "wlan.h"
5
6class Config;
7
8class WLANImp : public WLAN {
9 Q_OBJECT
10
11public:
12 WLANImp( Config& cfg, QWidget* parent = 0, const char* name = 0);
13
14protected:
15 void accept();
16 void done ( int r );
17
18private:
19 void readConfig();
20 bool writeConfig();
21 bool writeWirelessOpts( Config &cfg, QString scheme = "*" );
22 bool writeWlanngOpts( Config &cfg, QString scheme = "*" );
23 Config& config;
24};
25
26#endif
27