diff options
Diffstat (limited to '')
-rw-r--r-- | src/gatscon/setupproxydlg.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/gatscon/setupproxydlg.h b/src/gatscon/setupproxydlg.h new file mode 100644 index 0000000..6cc31bd --- /dev/null +++ b/src/gatscon/setupproxydlg.h | |||
@@ -0,0 +1,18 @@ | |||
1 | #ifndef SETUP_PROXY_DLG_H | ||
2 | #define SETUP_PROXY_DLG_H | ||
3 | |||
4 | #include "ui_setupproxydlg.h" | ||
5 | |||
6 | class SetupProxyDlg : public QDialog, protected Ui::SetupProxyDlg | ||
7 | { | ||
8 | Q_OBJECT; | ||
9 | public: | ||
10 | SetupProxyDlg( QWidget *pParent=NULL ); | ||
11 | virtual ~SetupProxyDlg(); | ||
12 | |||
13 | int getPortIn() const; | ||
14 | QByteArray getHostOut() const; | ||
15 | int getPortOut() const; | ||
16 | }; | ||
17 | |||
18 | #endif | ||