diff options
Diffstat (limited to '')
-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 | ||