summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/wlan/wlanmodule.h
Unidiff
Diffstat (limited to 'noncore/settings/networksettings/wlan/wlanmodule.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/wlan/wlanmodule.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/noncore/settings/networksettings/wlan/wlanmodule.h b/noncore/settings/networksettings/wlan/wlanmodule.h
index a617a90..0963137 100644
--- a/noncore/settings/networksettings/wlan/wlanmodule.h
+++ b/noncore/settings/networksettings/wlan/wlanmodule.h
@@ -1,11 +1,13 @@
1#ifndef WLAN_MODULE_H 1#ifndef WLAN_MODULE_H
2#define WLAN_MODULE_H 2#define WLAN_MODULE_H
3 3
4#include "module.h" 4#include "module.h"
5 5
6//class WlanInfoImp;
7
6class WLANModule : Module{ 8class WLANModule : Module{
7 9
8signals: 10signals:
9 void updateInterface(Interface *i); 11 void updateInterface(Interface *i);
10 12
11public: 13public:
@@ -23,15 +25,18 @@ public:
23 Interface *addNewInterface(const QString &name); 25 Interface *addNewInterface(const QString &name);
24 bool remove(Interface* i); 26 bool remove(Interface* i);
25 QString getPixmapName(Interface* i); 27 QString getPixmapName(Interface* i);
26 virtual void receive(const QCString&, const QByteArray&); 28 virtual void receive(const QCString&, const QByteArray&);
27 29
28private: 30private:
31 QWidget *getInfo(Interface*);
32
29 QList<Interface> list; 33 QList<Interface> list;
30 QString profile; 34 QString profile;
31 35 // WlanInfoImp *info;
36 // Interface *iface;
32}; 37};
33 38
34extern "C" 39extern "C"
35{ 40{
36 void* create_plugin() { 41 void* create_plugin() {
37 return new WLANModule(); 42 return new WLANModule();