summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/interfacesetupimp.h
Unidiff
Diffstat (limited to 'noncore/settings/networksettings/interfacesetupimp.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/interfacesetupimp.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/noncore/settings/networksettings/interfacesetupimp.h b/noncore/settings/networksettings/interfacesetupimp.h
new file mode 100644
index 0000000..6c34718
--- a/dev/null
+++ b/noncore/settings/networksettings/interfacesetupimp.h
@@ -0,0 +1,30 @@
1#ifndef INTERFACESETUPIMP_H
2#define INTERFACESETUPIMP_H
3
4#include "interfacesetup.h"
5
6class Interface;
7class Interfaces;
8
9class InterfaceSetupImp : public InterfaceSetup {
10 Q_OBJECT
11
12public:
13 InterfaceSetupImp( QWidget* parent = 0, const char* name = 0, Interface *i=0, bool modal = FALSE, WFlags fl = 0);
14
15protected slots:
16 void accept();
17 void changeProfile(const QString &profile);
18
19private:
20 bool saveSettings();
21 Interfaces *interfaces;
22 Interface *interface;
23 QString currentInterfaceName;
24
25};
26
27#endif
28
29// interfacesetupimp.h
30