diff options
Diffstat (limited to 'syncClientSocket.h')
-rw-r--r-- | syncClientSocket.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/syncClientSocket.h b/syncClientSocket.h index 17dd518..1909ebb 100644 --- a/syncClientSocket.h +++ b/syncClientSocket.h @@ -5,6 +5,11 @@ #include "Sockets/ISocketHandler.h" #include "connectionList.h" #include "syncCommand.h" +#include <sstream> +#include <iostream> +#include <string> + + #ifdef SOCKETS_NAMESPACE using namespace SOCKETS_NAMESPACE; @@ -20,6 +25,7 @@ public: void OnRawData(const char *buf,size_t len); private: ConnectionList & cl_; + std::stringstream iss_; }; |