diff options
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 | ||
