mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-28 23:16:15 -04:00
37 lines
923 B
C++
37 lines
923 B
C++
// ======================================================================
|
|
//
|
|
// LoggerConnection.h
|
|
//
|
|
// Copyright 2002 Sony Online Entertainment
|
|
//
|
|
// ======================================================================
|
|
|
|
#ifndef INCLUDED_LoggerConnection_H
|
|
#define INCLUDED_LoggerConnection_H
|
|
|
|
// ======================================================================
|
|
|
|
#include "serverUtility/ServerConnection.h"
|
|
|
|
// ======================================================================
|
|
|
|
class LoggerConnection: public ServerConnection
|
|
{
|
|
public:
|
|
LoggerConnection(UdpConnectionMT *, TcpClient *);
|
|
virtual ~LoggerConnection();
|
|
|
|
virtual void onConnectionClosed();
|
|
virtual void onConnectionOpened();
|
|
|
|
private:
|
|
LoggerConnection();
|
|
LoggerConnection(LoggerConnection const &);
|
|
LoggerConnection &operator=(LoggerConnection const &);
|
|
};
|
|
|
|
// ======================================================================
|
|
|
|
#endif
|
|
|