Renamed Networking -> Network

This commit is contained in:
sippeangelo
2015-12-07 15:22:26 +01:00
parent dbac9a9669
commit 6991a2be26
5 changed files with 5 additions and 6 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef Client_h__
#define Client_h__
#include <boost\asio.hpp>
class Client
{
Client();
~Client();
};
#endif
+13
View File
@@ -0,0 +1,13 @@
#ifndef Server_h__
#define Server_h__
#include <boost\asio.hpp>
class Server
{
Server();
~Server();
};
#endif