diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-11-09 16:25:22 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-11-09 16:25:22 +0000 |
commit | 74dd68ad611d15abf16a65c36a7cfd3f4492930a (patch) | |
tree | 843fed9ba6bb03253a01314afc3b1dfbb2dfd26c /c++-libbu++/src/gatscon/connectdlg.h | |
parent | d9b407475ae3ebe434b29d9eabdd7d4416e17881 (diff) | |
download | libgats-74dd68ad611d15abf16a65c36a7cfd3f4492930a.tar.gz libgats-74dd68ad611d15abf16a65c36a7cfd3f4492930a.tar.bz2 libgats-74dd68ad611d15abf16a65c36a7cfd3f4492930a.tar.xz libgats-74dd68ad611d15abf16a65c36a7cfd3f4492930a.zip |
Made the repo less libbu++-centric.
Diffstat (limited to 'c++-libbu++/src/gatscon/connectdlg.h')
-rw-r--r-- | c++-libbu++/src/gatscon/connectdlg.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/c++-libbu++/src/gatscon/connectdlg.h b/c++-libbu++/src/gatscon/connectdlg.h new file mode 100644 index 0000000..57ea6cd --- /dev/null +++ b/c++-libbu++/src/gatscon/connectdlg.h | |||
@@ -0,0 +1,17 @@ | |||
1 | #ifndef CONNECT_DLG_H | ||
2 | #define CONNECT_DLG_H | ||
3 | |||
4 | #include "ui_connectdlg.h" | ||
5 | |||
6 | class ConnectDlg : public QDialog, protected Ui::ConnectDlg | ||
7 | { | ||
8 | Q_OBJECT; | ||
9 | public: | ||
10 | ConnectDlg( QWidget *pParent ); | ||
11 | virtual ~ConnectDlg(); | ||
12 | |||
13 | QByteArray getHostname() const; | ||
14 | int getPort() const; | ||
15 | }; | ||
16 | |||
17 | #endif | ||