From efcbdb7a0347b4399cbabacf3cbea432eeafb17b Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 17 May 2011 01:24:51 +0000 Subject: Gats::Object now has a strToGats function, it's pretty slick, it takes a string and produces a fully formed gats tree. Also, gatscon now can interact with a server directly. --- src/gatscon/clientwidget.h | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'src/gatscon/clientwidget.h') diff --git a/src/gatscon/clientwidget.h b/src/gatscon/clientwidget.h index 3a96f07..21fb1b7 100644 --- a/src/gatscon/clientwidget.h +++ b/src/gatscon/clientwidget.h @@ -3,8 +3,10 @@ #include "ui_clientwidget.h" -#include -#include +namespace Gats +{ + class Object; +}; class ClientWidget : public QWidget, protected Ui::ClientWidget { @@ -13,9 +15,12 @@ public: ClientWidget( QWidget *pParent=NULL ); virtual ~ClientWidget(); +public slots: + void send(); + void recv( Gats::Object *pObj ); + private: - Bu::StreamStack ssCli; - Gats::GatsStream gsCli; + class ClientThread *pCli; }; #endif -- cgit v1.2.3