Files
src-1.2/engine/server/application/TaskManager/src/shared/PlanetConnection.h
T
2014-01-16 20:06:39 -07:00

33 lines
825 B
C++

// PlanetConnection.h
// Copyright 2000-01, Sony Online Entertainment Inc., all rights reserved.
#ifndef _INCLUDED_PlanetConnection_H
#define _INCLUDED_PlanetConnection_H
//-----------------------------------------------------------------------
#include "TaskHandler.h"
class TaskConnection;
//-----------------------------------------------------------------------
class PlanetConnection : public TaskHandler
{
public:
PlanetConnection(TaskConnection * connection);
~PlanetConnection();
void receive(const Archive::ByteStream & message);
private:
PlanetConnection & operator = (const PlanetConnection & rhs);
PlanetConnection(const PlanetConnection & source);
TaskConnection * connection;
};
//-----------------------------------------------------------------------
#endif // _INCLUDED_PlanetConnection_H