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/clientwidget.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/clientwidget.h')
-rw-r--r-- | src/gatscon/clientwidget.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/gatscon/clientwidget.h b/src/gatscon/clientwidget.h deleted file mode 100644 index 06c154d..0000000 --- a/src/gatscon/clientwidget.h +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | #ifndef CLIENT_WIDGET_H | ||
2 | #define CLIENT_WIDGET_H | ||
3 | |||
4 | #include <QObject> | ||
5 | #include "ui_clientwidget.h" | ||
6 | #include "iobase.h" | ||
7 | |||
8 | namespace Gats | ||
9 | { | ||
10 | class Object; | ||
11 | }; | ||
12 | |||
13 | class ClientWidget : public QWidget, protected Ui::ClientWidget, public IoBase | ||
14 | { | ||
15 | Q_OBJECT; | ||
16 | public: | ||
17 | ClientWidget( QWidget *pParent, const QByteArray &baHost, int iPort ); | ||
18 | virtual ~ClientWidget(); | ||
19 | |||
20 | virtual void saveTo( const QString &sFile ); | ||
21 | |||
22 | public slots: | ||
23 | void send(); | ||
24 | void recv( Gats::Object *pObj ); | ||
25 | |||
26 | private: | ||
27 | class ClientThread *pCli; | ||
28 | }; | ||
29 | |||
30 | #endif | ||