Added TaskManager app

This commit is contained in:
Anonymous
2014-01-16 20:06:39 -07:00
parent 39e541c767
commit 2bcd8a262c
46 changed files with 4822 additions and 0 deletions
@@ -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