mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-30 00:15:47 -04:00
30 lines
891 B
C++
Executable File
30 lines
891 B
C++
Executable File
// TaskManagerConnection.h
|
|
// copyright 2000 Verant Interactive
|
|
// Author: Justin Randall
|
|
|
|
#ifndef _TaskManagerConnection_H
|
|
#define _TaskManagerConnection_H
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
#include "serverUtility/ServerConnection.h"
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
class TaskManagerConnection : public ServerConnection
|
|
{
|
|
public:
|
|
TaskManagerConnection(const std::string & remoteAddress, const unsigned short remotePort);
|
|
~TaskManagerConnection();
|
|
void onConnectionClosed ();
|
|
void onConnectionOpened ();
|
|
|
|
private:
|
|
TaskManagerConnection(const TaskManagerConnection&);
|
|
TaskManagerConnection& operator=(TaskManagerConnection&);
|
|
};
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
#endif // _TaskManagerConnection_H
|