From 7019c0b5e0fcdd02fe6832673b7e34c8804b9c2d Mon Sep 17 00:00:00 2001 From: benmeyer Date: Tue, 01 Oct 2002 21:22:58 +0000 Subject: initial working wlan module --- (limited to 'noncore/net/networksetup/wlan/wlanmodule.h') diff --git a/noncore/net/networksetup/wlan/wlanmodule.h b/noncore/net/networksetup/wlan/wlanmodule.h new file mode 100644 index 0000000..1fbf6a9 --- a/dev/null +++ b/noncore/net/networksetup/wlan/wlanmodule.h @@ -0,0 +1,38 @@ +#ifndef WLAN_MODULE_H +#define WLAN_MODULE_H + +#include "module.h" + +class WLANModule : Module{ + +signals: + void updateInterface(Interface *i); + +public: + WLANModule(); + + virtual bool isOwner(Interface *); + virtual QWidget *configure(QTabWidget **tabWidget); + virtual QWidget *information(QTabWidget **tabWidget); + virtual QList getInterfaces(); + virtual QMap possibleNewInterfaces(); + virtual Interface *addNewInterface(QString name); + virtual bool remove(Interface* i); + virtual QString getPixmapName(Interface* i); + +private: + QList list; + +}; + +extern "C" +{ + void* create_plugin() { + return new WLANModule(); + } +}; + +#endif + +// wlanmodule.h + -- cgit v0.9.0.2