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.
11 lines
296 B
C++
11 lines
296 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 "CommSocket.h"
|
|
|
|
CommSocket::CommSocket(CommServer & svr) : commServer(svr) { }
|
|
|
|
CommSocket::~CommSocket()
|
|
{
|
|
}
|