emu_tcp_connection.cpp & .h include header cleanup and forward declare

This commit is contained in:
Akkadius 2014-12-15 20:21:54 -06:00
parent 41f6349804
commit 677c6b5750
2 changed files with 1 additions and 3 deletions

View File

@ -27,13 +27,10 @@ tremendously.
#include <iostream>
#include <string.h>
#include <stdio.h>
#include <iomanip>
#include "emu_tcp_connection.h"
#include "emu_tcp_server.h"
#include "../common/servertalk.h"
#include "../common/packet_dump.h"
#ifdef FREEBSD //Timothy Whitman - January 7, 2003
#define MSG_NOSIGNAL 0

View File

@ -26,6 +26,7 @@
struct SPackSendQueue;
class EmuTCPServer;
class ServerPacket;
class EmuTCPConnection : public TCPConnection {
public: