mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
* Doxyfile, client/define_world.cpp, client/define_world.h, common/CustomOp.cpp, common/CustomOp.h, common/CustomOp_impl.h, common/Load.h, common/Save.h, common/inheritance_impl.h, common/operations.h, common/refno.h, common/utility.cpp, common/utility.h, rulesets/Combat.h, rulesets/Entity_getLocation.h, rulesets/Fell.h, rulesets/MemMap_methods.h, rulesets/Py_Optime.cpp, rulesets/Py_Optime.h, rulesets/ThingFactory.h, server/CommIdleSocket.h, server/ServerRouting_methods.h, tools/Formatter.cpp, tools/Formatter.h, tools/cydbload.cpp, tools/cyisoload.cpp: Make doxygen skip code that has been removed and is just left in cvs for reference.
35 lines
1.3 KiB
C
35 lines
1.3 KiB
C
// Cyphesis Online RPG Server and AI Engine
|
|
// Copyright (C) 2000,2001 Alistair Riddoch
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program; if not, write to the Free Software Foundation,
|
|
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
#ifndef SERVER_SERVER_ROUTING_METHODS_H
|
|
#define SERVER_SERVER_ROUTING_METHODS_H
|
|
|
|
#error This file has been removed from the build.
|
|
#ifndef DOXYGEN_SHOULD_SKIP_THIS
|
|
|
|
#include "ServerRouting.h"
|
|
#include "common/BaseWorld.h"
|
|
|
|
/// \brief Called whenever the comms system is idle.
|
|
///
|
|
/// @return True if it did not have time to do everything, and would like to
|
|
/// be called again as soon as possible.
|
|
inline bool ServerRouting::idle() {
|
|
return m_world.idle();
|
|
}
|
|
|
|
#endif // SERVER_SERVER_ROUTING_METHODS_H
|