summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/ppp/pppmodule.h
Unidiff
Diffstat (limited to 'noncore/settings/networksettings/ppp/pppmodule.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/ppp/pppmodule.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/settings/networksettings/ppp/pppmodule.h b/noncore/settings/networksettings/ppp/pppmodule.h
index 6464f87..de649e4 100644
--- a/noncore/settings/networksettings/ppp/pppmodule.h
+++ b/noncore/settings/networksettings/ppp/pppmodule.h
@@ -9,21 +9,23 @@ signals:
9 void updateInterface(Interface *i); 9 void updateInterface(Interface *i);
10 10
11public: 11public:
12 PPPModule(); 12 PPPModule();
13 ~PPPModule(); 13 ~PPPModule();
14 14
15 virtual const QString type() {return "ppp";};
15 virtual void setProfile(const QString &newProfile); 16 virtual void setProfile(const QString &newProfile);
16 virtual bool isOwner(Interface *); 17 virtual bool isOwner(Interface *);
17 virtual QWidget *configure(Interface *i); 18 virtual QWidget *configure(Interface *i);
18 virtual QWidget *information(Interface *i); 19 virtual QWidget *information(Interface *i);
19 virtual QList<Interface> getInterfaces(); 20 virtual QList<Interface> getInterfaces();
20 virtual void possibleNewInterfaces(QMap<QString, QString> &); 21 virtual void possibleNewInterfaces(QMap<QString, QString> &);
21 virtual Interface *addNewInterface(const QString &name); 22 virtual Interface *addNewInterface(const QString &name);
22 virtual bool remove(Interface* i); 23 virtual bool remove(Interface* i);
23 virtual QString getPixmapName(Interface* i); 24 virtual QString getPixmapName(Interface* i);
25 virtual void receive(const QCString &msg, const QByteArray &arg) {};
24 26
25private: 27private:
26 QList<Interface> list; 28 QList<Interface> list;
27 QString profile; 29 QString profile;
28 30
29}; 31};