Basic connection between server and unit

This commit is contained in:
Kayne Ruse
2013-05-10 19:57:53 +10:00
parent a667fae21a
commit 4671afe900
18 changed files with 891 additions and 42 deletions
+5
View File
@@ -2,6 +2,9 @@
#define SERVER_HPP_
#include "config_utility.hpp"
#include "network.hpp"
#include <vector>
class Server {
public:
@@ -18,6 +21,8 @@ public:
private:
bool running;
ConfigUtility config;
TCPServerSocket servSock;
std::vector<TCPSocket*> sockVec;
};
#endif