What am I doing wrong?

This commit is contained in:
Kayne Ruse
2013-05-04 01:48:31 +10:00
parent 96f0821d9b
commit f0e7550b7d
4 changed files with 36 additions and 15 deletions
+2
View File
@@ -2,6 +2,7 @@
#define SERVER_HPP_
#include "tcp_network_manager.hpp"
#include "config_utility.hpp"
class Server {
public:
@@ -18,6 +19,7 @@ public:
private:
bool running;
TCPNetworkManager netMgr;
ConfigUtility config;
};
#endif