summaryrefslogtreecommitdiff
path: root/noncore/net/networksetup/wlan/wlanimp.h
authorbenmeyer <benmeyer>2002-10-01 21:22:58 (UTC)
committer benmeyer <benmeyer>2002-10-01 21:22:58 (UTC)
commit7019c0b5e0fcdd02fe6832673b7e34c8804b9c2d (patch) (unidiff)
tree96821d12fe36c7f71cb500596777f486cd50d80d /noncore/net/networksetup/wlan/wlanimp.h
parent1ed782f91c1af59e31c117809ca5d9150b8b6654 (diff)
downloadopie-7019c0b5e0fcdd02fe6832673b7e34c8804b9c2d.zip
opie-7019c0b5e0fcdd02fe6832673b7e34c8804b9c2d.tar.gz
opie-7019c0b5e0fcdd02fe6832673b7e34c8804b9c2d.tar.bz2
initial working wlan module
Diffstat (limited to 'noncore/net/networksetup/wlan/wlanimp.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/networksetup/wlan/wlanimp.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/noncore/net/networksetup/wlan/wlanimp.h b/noncore/net/networksetup/wlan/wlanimp.h
new file mode 100644
index 0000000..8e355ce
--- a/dev/null
+++ b/noncore/net/networksetup/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