Removing unused parts from the receive helper.

This commit is contained in:
lotodore
2009-06-16 19:05:42 +00:00
parent b30d84f879
commit d45e41c963
2 changed files with 0 additions and 63 deletions
-9
View File
@@ -21,10 +21,6 @@
#ifndef _RECEIVERHELPER_H_
#define _RECEIVERHELPER_H_
#include <boost/shared_ptr.hpp>
#include <deque>
#include <net/socket_helper.h>
#include <net/netpacket.h>
#include <net/receivebuffer.h>
@@ -35,11 +31,6 @@ public:
ReceiverHelper();
virtual ~ReceiverHelper();
// Set the socket from which to receive data.
void Init(SOCKET socket);
boost::shared_ptr<NetPacket> Recv(SOCKET sock, ReceiveBuffer &buf);
void ScanPackets(ReceiveBuffer &buf);
};