diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-03-27 11:42:12 +0100 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-03-27 12:15:50 +0100 |
commit | 06be39a51f62d365ce84d7815173577d2ecf8496 (patch) | |
tree | f4ae92023dd05cbf8d7b9c73e0a8779241202c4c /src/net/tmwserv/connection.cpp | |
parent | 58b33406b1354e6814ed29d55a55a36053445ecd (diff) | |
download | mana-06be39a51f62d365ce84d7815173577d2ecf8496.tar.gz mana-06be39a51f62d365ce84d7815173577d2ecf8496.tar.bz2 mana-06be39a51f62d365ce84d7815173577d2ecf8496.tar.xz mana-06be39a51f62d365ce84d7815173577d2ecf8496.zip |
Changed the includes for the net/tmwserv/ directory
Diffstat (limited to 'src/net/tmwserv/connection.cpp')
-rw-r--r-- | src/net/tmwserv/connection.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/net/tmwserv/connection.cpp b/src/net/tmwserv/connection.cpp index eb2310e4..0fcd530b 100644 --- a/src/net/tmwserv/connection.cpp +++ b/src/net/tmwserv/connection.cpp @@ -19,14 +19,15 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "connection.h" +#include "net/tmwserv/connection.h" -#include <string> +#include "net/tmwserv/internal.h" + +#include "net/messageout.h" -#include "internal.h" -#include "../messageout.h" +#include "log.h" -#include "../../log.h" +#include <string> Net::Connection::Connection(ENetHost *client): mConnection(0), mClient(client) |