eq_stream_factory.cpp & .h header include cleanup/forward declare

This commit is contained in:
Akkadius 2014-12-15 20:30:53 -06:00
parent 5e31b8f96e
commit 968b0adc1d
2 changed files with 7 additions and 5 deletions

View File

@ -1,5 +1,6 @@
#include "debug.h"
#include "eq_stream_factory.h"
#ifdef _WINDOWS
#include <winsock.h>
#include <process.h>
@ -13,11 +14,10 @@
#include <netdb.h>
#include <pthread.h>
#endif
#include <fcntl.h>
#include <iostream>
#include "op_codes.h"
#include "eq_stream.h"
#include "logsys.h"
ThreadReturnType EQStreamFactoryReaderLoop(void *eqfs)
{

View File

@ -4,11 +4,13 @@
#include <queue>
#include <map>
#include "../common/eq_stream.h"
#include "../common/condition.h"
#include "../common/timeoutmgr.h"
#include "../common/opcodemgr.h"
#include "../common/timer.h"
class EQStream;
class Timer;
class EQStreamFactory : private Timeoutable {
private: