/* client/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 "client/console.h" namespace client { std::ostream & Console::messagestream() { return (std::cout << ". "); } std::ostream & Console::warningstream() { return (std::cout << "! "); } std::ostream & Console::debugstream() { return (std::cout << "? "); } } // namespace client