cyphesis/server/SlaveClientConnection.cpp
Al Riddoch 24505edda1 2005-11-11 Al Riddoch <alriddoch@zepler.org>
* common/BaseEntity.h, common/OOGThing.cpp, common/OOGThing.h,
	  server/Account.cpp, server/Account.h, server/Admin.cpp,
	  server/Admin.h, server/Connection.cpp, server/ExternalMind.cpp,
	  server/ExternalMind.h, server/Lobby.cpp, server/Lobby.h,
	  server/Peer.cpp, server/Persistance.cpp, server/Player.cpp,
	  server/Player.h, server/ServerRouting.cpp,
	  server/SlaveClientConnection.cpp, server/server.cpp:
	  Add integer ID handling to accounts, and some other OOG
	  objects.
2005-11-11 16:03:14 +00:00

18 lines
662 B
C++

// This file may be redistributed and modified only under the terms of
// the GNU General Public License (See COPYING for details).
// Copyright (C) 2000,2001 Alistair Riddoch
#include "SlaveClientConnection.h"
SlaveClientConnection::SlaveClientConnection(const std::string & id,
CommClient & client,
ServerRouting & svr) :
OOGThing(id, -1),
m_commClient(client),
m_server(svr)
{
}
SlaveClientConnection::~SlaveClientConnection()
{
}