From 5e31b8f96e818ccf8ec9b1bbaf9a41026bed26de Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 15 Dec 2014 20:28:27 -0600 Subject: [PATCH] eq_stream.cpp & .h include header cleanup --- common/eq_stream.cpp | 3 --- common/eq_stream.h | 17 ++++++++++------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/common/eq_stream.cpp b/common/eq_stream.cpp index 7b69decc2..879d57664 100644 --- a/common/eq_stream.cpp +++ b/common/eq_stream.cpp @@ -19,15 +19,12 @@ #include "debug.h" #include "eq_packet.h" #include "eq_stream.h" -#include "misc.h" -#include "mutex.h" #include "op_codes.h" #include "crc16.h" #include "platform.h" #include #include -#include #include #include diff --git a/common/eq_stream.h b/common/eq_stream.h index 5a637c46e..ee797021f 100644 --- a/common/eq_stream.h +++ b/common/eq_stream.h @@ -1,22 +1,26 @@ #ifndef _EQSTREAM_H #define _EQSTREAM_H -#include #include #include #include #include + #ifndef WIN32 #include #endif -#include "eq_stream_type.h" + +#include "../common/misc.h" +#include "../common/opcodemgr.h" +#include "../common/timer.h" + #include "eq_packet.h" #include "eq_stream_intf.h" +#include "eq_stream_type.h" #include "mutex.h" -#include "../common/opcodemgr.h" -#include "../common/misc.h" -#include "../common/condition.h" -#include "../common/timer.h" + +class EQApplicationPacket; +class EQProtocolPacket; #define FLAG_COMPRESSED 0x01 #define FLAG_ENCODED 0x04 @@ -78,7 +82,6 @@ struct SessionStats { #pragma pack() class OpcodeManager; -class EQStreamPair; class EQRawApplicationPacket; class EQStream : public EQStreamInterface {