mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-08-01 02:15:54 -04:00
33 lines
825 B
C++
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
|