summaryrefslogtreecommitdiff
path: root/noncore/net/networksetup/ppp/pppmodule.h
Side-by-side diff
Diffstat (limited to 'noncore/net/networksetup/ppp/pppmodule.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/networksetup/ppp/pppmodule.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/noncore/net/networksetup/ppp/pppmodule.h b/noncore/net/networksetup/ppp/pppmodule.h
deleted file mode 100644
index c8e77e2..0000000
--- a/noncore/net/networksetup/ppp/pppmodule.h
+++ b/dev/null
@@ -1,41 +0,0 @@
-#ifndef PPP_MODULE_H
-#define PPP_MODULE_H
-
-#include "module.h"
-
-class PPPModule : Module {
-
-signals:
- void updateInterface(Interface *i);
-
-public:
- PPPModule();
- ~PPPModule();
-
- virtual void setProfile(const QString &newProfile);
- virtual bool isOwner(Interface *);
- virtual QWidget *configure(Interface *i);
- virtual QWidget *information(Interface *i);
- virtual QList<Interface> getInterfaces();
- virtual void possibleNewInterfaces(QMap<QString, QString> &){};
- virtual Interface *addNewInterface(const QString &name);
- virtual bool remove(Interface* i);
- virtual QString getPixmapName(Interface* i);
-
-private:
- QList<Interface> list;
- QString profile;
-
-};
-
-extern "C"
-{
- void* create_plugin() {
- return new PPPModule();
- }
-};
-
-#endif
-
-// pppmodule.h
-