diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-05-16 20:51:20 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-05-16 20:51:20 +0000 |
commit | 02c60c6720f41bcfc367d02ae4c655b651642991 (patch) | |
tree | bbda9db56f71c846e5712bcbf44a52f475795f0a /src/gatscon/clientwidget.h | |
parent | 09e3102ffba4b9ee11d988f95c04d344790127db (diff) | |
download | libgats-02c60c6720f41bcfc367d02ae4c655b651642991.tar.gz libgats-02c60c6720f41bcfc367d02ae4c655b651642991.tar.bz2 libgats-02c60c6720f41bcfc367d02ae4c655b651642991.tar.xz libgats-02c60c6720f41bcfc367d02ae4c655b651642991.zip |
Almost there! I'm adding a qtbenc-like program for gats, only cooler. It'll
really help us debug gats based protocols and look at gats files, and the like.
Diffstat (limited to 'src/gatscon/clientwidget.h')
-rw-r--r-- | src/gatscon/clientwidget.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/gatscon/clientwidget.h b/src/gatscon/clientwidget.h new file mode 100644 index 0000000..3a96f07 --- /dev/null +++ b/src/gatscon/clientwidget.h | |||
@@ -0,0 +1,21 @@ | |||
1 | #ifndef CLIENT_WIDGET_H | ||
2 | #define CLIENT_WIDGET_H | ||
3 | |||
4 | #include "ui_clientwidget.h" | ||
5 | |||
6 | #include <bu/streamstack.h> | ||
7 | #include <gats/gatsstream.h> | ||
8 | |||
9 | class ClientWidget : public QWidget, protected Ui::ClientWidget | ||
10 | { | ||
11 | Q_OBJECT; | ||
12 | public: | ||
13 | ClientWidget( QWidget *pParent=NULL ); | ||
14 | virtual ~ClientWidget(); | ||
15 | |||
16 | private: | ||
17 | Bu::StreamStack ssCli; | ||
18 | Gats::GatsStream gsCli; | ||
19 | }; | ||
20 | |||
21 | #endif | ||