summaryrefslogtreecommitdiff
path: root/noncore/net/networksetup/ppp/pppimp.h
Unidiff
Diffstat (limited to 'noncore/net/networksetup/ppp/pppimp.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/networksetup/ppp/pppimp.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/noncore/net/networksetup/ppp/pppimp.h b/noncore/net/networksetup/ppp/pppimp.h
index 60d29b5..1bc1fad 100644
--- a/noncore/net/networksetup/ppp/pppimp.h
+++ b/noncore/net/networksetup/ppp/pppimp.h
@@ -2,16 +2,24 @@
2#define PPPIMP_H 2#define PPPIMP_H
3 3
4#include "ppp.h" 4#include "ppp.h"
5 5
6class PPPConfigureImp : public PPP { 6class PPPConfigureImp : public PPP {
7 7
8Q_OBJECT
9
8public: 10public:
9 PPPConfigureImp(); 11 PPPConfigureImp(QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0);
10 ~PPPConfigureImp(); 12 void setPeer(const QString &peer);
11 13
14protected:
15 void accept();
16
17private:
18 QString peer;
19
12}; 20};
13 21
14#endif 22#endif
15 23
16// pppconfigureimp.h 24// pppconfigureimp.h
17 25