summaryrefslogtreecommitdiff
path: root/src/connectionhandler.h
diff options
context:
space:
mode:
authorBjörn Steinbrink <B.Steinbrink@gmx.de>2006-03-06 00:26:05 +0000
committerBjörn Steinbrink <B.Steinbrink@gmx.de>2006-03-06 00:26:05 +0000
commit1941e274acd375ff70fd09a9d458755d2a82e66e (patch)
tree0c159d8d9da64267b7ca56397c775d256cc780e6 /src/connectionhandler.h
parent54fa93b126ce6f2ed5ec24b134fe367fa5bc5c87 (diff)
downloadmanaserv-1941e274acd375ff70fd09a9d458755d2a82e66e.tar.gz
manaserv-1941e274acd375ff70fd09a9d458755d2a82e66e.tar.bz2
manaserv-1941e274acd375ff70fd09a9d458755d2a82e66e.tar.xz
manaserv-1941e274acd375ff70fd09a9d458755d2a82e66e.zip
Cleaned up unnecessary header dependencies and fixed some indentations.
Diffstat (limited to 'src/connectionhandler.h')
-rw-r--r--src/connectionhandler.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/connectionhandler.h b/src/connectionhandler.h
index c00abfc6..3eb4ac2c 100644
--- a/src/connectionhandler.h
+++ b/src/connectionhandler.h
@@ -24,16 +24,17 @@
#ifndef _TMWSERV_CONNECTIONHANDLER_H_
#define _TMWSERV_CONNECTIONHANDLER_H_
-#include "messagehandler.h"
-#include "netcomputer.h"
-#include "packet.h"
-#include "being.h"
-#include "messageout.h"
+#include <list>
#include <map>
#include <SDL_net.h>
+#include "being.h"
+
#define IN_BUFFER_SIZE 8192
+class MessageHandler;
+class MessageOut;
+class NetComputer;
// Forward declaration
class ListenThreadData;