aboutsummaryrefslogtreecommitdiff
path: root/c++-libbu++/src/gatscon/setupproxydlg.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-11-09 17:20:11 +0000
committerMike Buland <eichlan@xagasoft.com>2012-11-09 17:20:11 +0000
commitd534a56d95bca7bdd812be024d9eacba4734e2b7 (patch)
treef9b98ee2b80e645a7b54e7934882be6c9f73c165 /c++-libbu++/src/gatscon/setupproxydlg.h
parent61ccc86fdf06f12cb72a8b7e65286f812cf62154 (diff)
downloadlibgats-d534a56d95bca7bdd812be024d9eacba4734e2b7.tar.gz
libgats-d534a56d95bca7bdd812be024d9eacba4734e2b7.tar.bz2
libgats-d534a56d95bca7bdd812be024d9eacba4734e2b7.tar.xz
libgats-d534a56d95bca7bdd812be024d9eacba4734e2b7.zip
Many changes: tabconv'd the C++ code, added a license, BSD, and docs.
Diffstat (limited to '')
-rw-r--r--c++-libbu++/src/gatscon/setupproxydlg.h19
1 files changed, 13 insertions, 6 deletions
diff --git a/c++-libbu++/src/gatscon/setupproxydlg.h b/c++-libbu++/src/gatscon/setupproxydlg.h
index 6cc31bd..685e893 100644
--- a/c++-libbu++/src/gatscon/setupproxydlg.h
+++ b/c++-libbu++/src/gatscon/setupproxydlg.h
@@ -1,3 +1,10 @@
1/*
2 * Copyright (C) 2007-2012 Xagasoft, All rights reserved.
3 *
4 * This file is part of the libgats library and is released under the
5 * terms of the license contained in the file LICENSE.
6 */
7
1#ifndef SETUP_PROXY_DLG_H 8#ifndef SETUP_PROXY_DLG_H
2#define SETUP_PROXY_DLG_H 9#define SETUP_PROXY_DLG_H
3 10
@@ -5,14 +12,14 @@
5 12
6class SetupProxyDlg : public QDialog, protected Ui::SetupProxyDlg 13class SetupProxyDlg : public QDialog, protected Ui::SetupProxyDlg
7{ 14{
8 Q_OBJECT; 15 Q_OBJECT;
9public: 16public:
10 SetupProxyDlg( QWidget *pParent=NULL ); 17 SetupProxyDlg( QWidget *pParent=NULL );
11 virtual ~SetupProxyDlg(); 18 virtual ~SetupProxyDlg();
12 19
13 int getPortIn() const; 20 int getPortIn() const;
14 QByteArray getHostOut() const; 21 QByteArray getHostOut() const;
15 int getPortOut() const; 22 int getPortOut() const;
16}; 23};
17 24
18#endif 25#endif