mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
* 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.
18 lines
662 B
C++
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()
|
|
{
|
|
}
|