/* 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 "console.h" #include namespace client { std::ostream & Console::message() { return (std::cout << ". "); } std::ostream & Console::warning() { return (std::cout << "! "); } std::ostream & Console::debug() { return (std::cout << "? "); } } // namespace client