aboutsummaryrefslogtreecommitdiff
path: root/c++-libbu++/src/gatscon/setupproxydlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'c++-libbu++/src/gatscon/setupproxydlg.h')
-rw-r--r--c++-libbu++/src/gatscon/setupproxydlg.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/c++-libbu++/src/gatscon/setupproxydlg.h b/c++-libbu++/src/gatscon/setupproxydlg.h
new file mode 100644
index 0000000..6cc31bd
--- /dev/null
+++ b/c++-libbu++/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
6class SetupProxyDlg : public QDialog, protected Ui::SetupProxyDlg
7{
8 Q_OBJECT;
9public:
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