Files
src-1.2/engine/server/library/serverDatabase/src/shared/ChatServerConnection.h
T

31 lines
868 B
C++
Executable File

// ChatServerConnection.h
// Copyright 2000-02, Sony Online Entertainment Inc., all rights reserved.
// Author: Justin Randall
#ifndef _INCLUDED_ChatServerConnection_H
#define _INCLUDED_ChatServerConnection_H
//-----------------------------------------------------------------------
#include "serverUtility/ServerConnection.h"
//-----------------------------------------------------------------------
class ChatServerConnection : public ServerConnection
{
public:
ChatServerConnection(const std::string & address, const unsigned short port);
~ChatServerConnection();
void onConnectionClosed();
private:
ChatServerConnection & operator = (const ChatServerConnection & rhs);
ChatServerConnection(const ChatServerConnection & source);
};
//-----------------------------------------------------------------------
#endif // _INCLUDED_ChatServerConnection_H