mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
* server/Restoration.h, server/CommUnixListener.h, server/CommSocket.h, server/CommSocket.cpp, server/CommServer.h, server/CommMetaClient.h, server/CommMetaClient.cpp, server/CommListener.h, server/CommListener.cpp, server/CommIdleSocket.h, server/CommIdleSocket.cpp, rulesets/Area.h, modules/WorldTime.h, common/OOGThing.h, common/OOGThing.cpp: Get rid of some naughty stray implicit constructors.
14 lines
312 B
C++
14 lines
312 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) 2003 Alistair Riddoch
|
|
|
|
#include "CommIdleSocket.h"
|
|
|
|
|
|
CommIdleSocket::CommIdleSocket(CommServer & svr) : CommSocket(svr)
|
|
{
|
|
}
|
|
|
|
CommIdleSocket::~CommIdleSocket()
|
|
{
|
|
}
|