summaryrefslogtreecommitdiff
path: root/noncore/net/networksetup/wlan/infoimp.h
authorbenmeyer <benmeyer>2002-10-25 15:47:02 (UTC)
committer benmeyer <benmeyer>2002-10-25 15:47:02 (UTC)
commite26cf0e83db11d6d135176f874c0781b4b6481d2 (patch) (unidiff)
treea7fbeb28b804f91f76eaa24ec23449bbd623bd45 /noncore/net/networksetup/wlan/infoimp.h
parentd0d87d596d64cc1d5ef6322896c68883e4dfb5d0 (diff)
downloadopie-e26cf0e83db11d6d135176f874c0781b4b6481d2.zip
opie-e26cf0e83db11d6d135176f874c0781b4b6481d2.tar.gz
opie-e26cf0e83db11d6d135176f874c0781b4b6481d2.tar.bz2
Adding infoimp class
Diffstat (limited to 'noncore/net/networksetup/wlan/infoimp.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/networksetup/wlan/infoimp.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/noncore/net/networksetup/wlan/infoimp.h b/noncore/net/networksetup/wlan/infoimp.h
new file mode 100644
index 0000000..5311bea
--- a/dev/null
+++ b/noncore/net/networksetup/wlan/infoimp.h
@@ -0,0 +1,27 @@
1#ifndef INFOIMP_H
2#define INFOIMP_H
3
4#include "info.h"
5
6class QTimer;
7class WExtensions;
8
9class WlanInfoImp : public WlanInfo {
10 Q_OBJECT
11
12public:
13 WlanInfoImp( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
14
15private slots:
16 void update();
17
18private:
19 //WExtensions *wExtensions;
20 QTimer *timer;
21
22};
23
24#endif
25
26// infoimp.h
27