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 /src/gatscon/proxywidget.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 'src/gatscon/proxywidget.h')
-rw-r--r-- | src/gatscon/proxywidget.h | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/src/gatscon/proxywidget.h b/src/gatscon/proxywidget.h deleted file mode 100644 index d6ebf4d..0000000 --- a/src/gatscon/proxywidget.h +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
1 | #ifndef PROXY_WIDGET_H | ||
2 | #define PROXY_WIDGET_H | ||
3 | |||
4 | #include "ui_proxywidget.h" | ||
5 | #include "iobase.h" | ||
6 | |||
7 | namespace Gats | ||
8 | { | ||
9 | class Object; | ||
10 | }; | ||
11 | |||
12 | class ProxyWidget : public QWidget, protected Ui::ProxyWidget, public IoBase | ||
13 | { | ||
14 | Q_OBJECT; | ||
15 | public: | ||
16 | ProxyWidget( QWidget *pParent, int iPortIn, const QByteArray baHost, | ||
17 | int iPortOut ); | ||
18 | virtual ~ProxyWidget(); | ||
19 | |||
20 | virtual void saveTo( const QString &sFile ); | ||
21 | |||
22 | public slots: | ||
23 | void sendToClient(); | ||
24 | void sendToServer(); | ||
25 | void clientRecv( Gats::Object *pObj ); | ||
26 | void hostRecv( Gats::Object *pObj ); | ||
27 | void gotConnection(); | ||
28 | |||
29 | private: | ||
30 | class ProxyThread *pPrx; | ||
31 | }; | ||
32 | |||
33 | #endif | ||