mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-08-01 02:15:54 -04:00
35 lines
1.1 KiB
C++
Executable File
35 lines
1.1 KiB
C++
Executable File
// StationPlayersCollectorConnection.h
|
|
// copyright 2005 Sony Online Entertainment
|
|
// Author: Doug Mellencamp
|
|
|
|
#ifndef _StationPlayersCollectorConnection_H
|
|
#define _StationPlayersCollectorConnection_H
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
#include "serverUtility/ServerConnection.h"
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
class StationPlayersCollectorConnection : public ServerConnection
|
|
{
|
|
public:
|
|
StationPlayersCollectorConnection(const std::string & remoteAddress, const unsigned short remotePort);
|
|
~StationPlayersCollectorConnection();
|
|
|
|
void onConnectionClosed();
|
|
void onConnectionOpened();
|
|
void onReceive(const Archive::ByteStream & message);
|
|
|
|
private:
|
|
StationPlayersCollectorConnection(const StationPlayersCollectorConnection&);
|
|
StationPlayersCollectorConnection& operator= (const StationPlayersCollectorConnection&);
|
|
|
|
}; //lint !e1712 default constructor not defined
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
#endif // _StationPlayersCollectorConnection_H
|
|
|
|
|