Changed my mind about networking system structure

This commit is contained in:
Kayne Ruse
2013-05-04 14:00:30 +10:00
parent 2dedfa9505
commit f0d4ef0675
8 changed files with 61 additions and 105 deletions
-2
View File
@@ -1,7 +1,6 @@
#ifndef SERVER_HPP_
#define SERVER_HPP_
#include "tcp_network_manager.hpp"
#include "config_utility.hpp"
class Server {
@@ -18,7 +17,6 @@ public:
void HandleOutput();
private:
bool running;
TCPNetworkManager netMgr;
ConfigUtility config;
};