eq_stream.cpp & .h include header cleanup

This commit is contained in:
Akkadius 2014-12-15 20:28:27 -06:00
parent 1a6a50c810
commit 5e31b8f96e
2 changed files with 10 additions and 10 deletions

View File

@ -19,15 +19,12 @@
#include "debug.h" #include "debug.h"
#include "eq_packet.h" #include "eq_packet.h"
#include "eq_stream.h" #include "eq_stream.h"
#include "misc.h"
#include "mutex.h"
#include "op_codes.h" #include "op_codes.h"
#include "crc16.h" #include "crc16.h"
#include "platform.h" #include "platform.h"
#include <string> #include <string>
#include <iomanip> #include <iomanip>
#include <iostream>
#include <vector> #include <vector>
#include <algorithm> #include <algorithm>

View File

@ -1,22 +1,26 @@
#ifndef _EQSTREAM_H #ifndef _EQSTREAM_H
#define _EQSTREAM_H #define _EQSTREAM_H
#include <string>
#include <vector> #include <vector>
#include <map> #include <map>
#include <queue> #include <queue>
#include <deque> #include <deque>
#ifndef WIN32 #ifndef WIN32
#include <netinet/in.h> #include <netinet/in.h>
#endif #endif
#include "eq_stream_type.h"
#include "../common/misc.h"
#include "../common/opcodemgr.h"
#include "../common/timer.h"
#include "eq_packet.h" #include "eq_packet.h"
#include "eq_stream_intf.h" #include "eq_stream_intf.h"
#include "eq_stream_type.h"
#include "mutex.h" #include "mutex.h"
#include "../common/opcodemgr.h"
#include "../common/misc.h" class EQApplicationPacket;
#include "../common/condition.h" class EQProtocolPacket;
#include "../common/timer.h"
#define FLAG_COMPRESSED 0x01 #define FLAG_COMPRESSED 0x01
#define FLAG_ENCODED 0x04 #define FLAG_ENCODED 0x04
@ -78,7 +82,6 @@ struct SessionStats {
#pragma pack() #pragma pack()
class OpcodeManager; class OpcodeManager;
class EQStreamPair;
class EQRawApplicationPacket; class EQRawApplicationPacket;
class EQStream : public EQStreamInterface { class EQStream : public EQStreamInterface {