From bc8ad9d1b1ce4a1561e2759c15bd1cf2d4322dc1 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Tue, 5 Mar 2013 20:47:29 +0000 Subject: [PATCH] Made ListenThread an OSSupport part, as it's generic enough git-svn-id: http://mc-server.googlecode.com/svn/trunk@1258 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- VC2008/MCServer.vcproj | 16 ++++++++-------- source/{ => OSSupport}/ListenThread.cpp | 0 source/{ => OSSupport}/ListenThread.h | 4 ++-- source/Server.h | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) rename source/{ => OSSupport}/ListenThread.cpp (100%) rename source/{ => OSSupport}/ListenThread.h (90%) diff --git a/VC2008/MCServer.vcproj b/VC2008/MCServer.vcproj index 2e9d4b4b7..2a9d6ab25 100644 --- a/VC2008/MCServer.vcproj +++ b/VC2008/MCServer.vcproj @@ -499,14 +499,6 @@ RelativePath="..\source\LightingThread.h" > - - - - @@ -1190,6 +1182,14 @@ RelativePath="..\source\OSSupport\IsThread.h" > + + + + diff --git a/source/ListenThread.cpp b/source/OSSupport/ListenThread.cpp similarity index 100% rename from source/ListenThread.cpp rename to source/OSSupport/ListenThread.cpp diff --git a/source/ListenThread.h b/source/OSSupport/ListenThread.h similarity index 90% rename from source/ListenThread.h rename to source/OSSupport/ListenThread.h index ab2c97b9d..952cc8a3f 100644 --- a/source/ListenThread.h +++ b/source/OSSupport/ListenThread.h @@ -9,8 +9,8 @@ #pragma once -#include "OSSupport/IsThread.h" -#include "OSSupport/Socket.h" +#include "IsThread.h" +#include "Socket.h" diff --git a/source/Server.h b/source/Server.h index b12453aec..abcd7eaa1 100644 --- a/source/Server.h +++ b/source/Server.h @@ -12,9 +12,9 @@ #define CSERVER_H_INCLUDED #include "OSSupport/SocketThreads.h" +#include "OSSupport/ListenThread.h" #include "CryptoPP/rsa.h" #include "CryptoPP/randpool.h" -#include "ListenThread.h"