Wrapper completed & tested; adjusted many systems

This commit is contained in:
Kayne Ruse
2013-05-19 21:27:24 +10:00
parent 000e3707ed
commit f8c174741d
9 changed files with 192 additions and 28 deletions
+2 -2
View File
@@ -1,10 +1,9 @@
#ifndef SERVER_HPP_
#define SERVER_HPP_
#include "udp_network_utility.hpp"
#include "config_utility.hpp"
#include <list>
class Server {
public:
Server() = default;
@@ -20,6 +19,7 @@ public:
private:
bool running = false;
ConfigUtility config;
UDPNetworkUtility netUtil;
};
#endif