summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/ppp/PPPedit.h
blob: 57d38ee29913dcd4871fdc197024f497fee7132b (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
#include "pppdata.h"
#include "PPPGUI.h"

class PPPAuthEdit;
class PPPIPEdit;
class PPPDNSEdit;

class PPPEdit  : public PPPGUI {

public :

    PPPEdit( QWidget * parent );
    QString acceptable( void );
    bool commit( PPPData_t & Data );
    void showData( PPPData_t & Data );

public slots :

    void SLOT_SelectTopic( int );

private :

    PPPAuthEdit * Auth;
    PPPDNSEdit *  DNS;
    PPPIPEdit *   IP;

};