From e44df94f450450af91796062aee50b87a16647e3 Mon Sep 17 00:00:00 2001 From: workinghard Date: Mon, 29 Jun 2015 20:08:50 -0700 Subject: [PATCH] a --- Cube4Fun/src/CubeNetwork.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cube4Fun/src/CubeNetwork.h b/Cube4Fun/src/CubeNetwork.h index 1f78a06..b40bec0 100644 --- a/Cube4Fun/src/CubeNetwork.h +++ b/Cube4Fun/src/CubeNetwork.h @@ -30,6 +30,8 @@ #include /* srand, rand */ #include /* time */ #include +#include "tcpconnector.h" +#include class CubeNetwork { @@ -41,6 +43,8 @@ public: static bool openConnection(const char* ipAddr, unsigned int port); //static void openConnection(); static void closeConnection(); +private: + static TCPConnector* connector; }; #endif /* defined(__Cube4Fun__CubeNetwork__) */