mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-08-03 04:19:20 -04:00
Added TaskManager app
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
// 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
|
||||
Reference in New Issue
Block a user