Merge pull request #5 from teamfisk/Networking

Networking
This commit is contained in:
2015-12-07 15:23:11 +01:00
5 changed files with 57 additions and 0 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
+7
View File
@@ -46,6 +46,12 @@ file(GLOB SOURCE_FILES_Input
)
source_group(Input FILES ${SOURCE_FILES_Input})
file(GLOB SOURCE_FILES_Network
"${INCLUDE_PATH}/Network/*.h"
"Network/*.cpp"
)
source_group(Network FILES ${SOURCE_FILES_Network})
file(GLOB SOURCE_FILES_Rendering
"${INCLUDE_PATH}/Rendering/*.h"
"Rendering/*.cpp"
@@ -68,6 +74,7 @@ set(SOURCE_FILES
${SOURCE_FILES_Core}
${SOURCE_FILES_Core_Util}
#${SOURCE_FILES_Input}
${SOURCE_FILES_Network}
${SOURCE_FILES_GUI}
${SOURCE_FILES_Rendering}
${SOURCE_FILES_Rendering_Util}
+11
View File
@@ -0,0 +1,11 @@
#include "Networking\Client.h"
Client::Client()
{
}
Client::~Client()
{
}
+11
View File
@@ -0,0 +1,11 @@
#include "Networking\Server.h"
Server::Server()
{
}
Server::~Server()
{
}