summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/ppp/pppmodule.h
blob: de649e4a66b15cdb518d52499aac14f37e7c9612 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef PPP_MODULE_H
#define PPP_MODULE_H
 
#include "module.h"

class PPPModule : Module {

signals:
    void updateInterface(Interface *i);
	
public:
  PPPModule();
  ~PPPModule();

  virtual const QString type() {return "ppp";};
  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);
  virtual void receive(const QCString &msg, const QByteArray &arg) {};

private:
  QList<Interface> list;
  QString profile;

};

extern "C"
{
  void* create_plugin() {
    return new PPPModule();
  }
};

#endif

// pppmodule.h