/* server/console.cc This file is part of the Osirion project and is distributed under the terms and conditions of the GNU General Public License version 2 */ #include "server/console.h" #include namespace server { std::ostream & Console::messagestream() { return std::cout; } std::ostream & Console::warningstream() { return std::cerr; } std::ostream & Console::errorstream() { return std::cerr; } std::ostream & Console::debugstream() { return std::cout; } } // namespace server