Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/console.cc')
-rw-r--r--src/client/console.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/client/console.cc b/src/client/console.cc
index f270108..6a3dfaa 100644
--- a/src/client/console.cc
+++ b/src/client/console.cc
@@ -4,22 +4,21 @@
the terms and conditions of the GNU General Public License version 2
*/
-#include "console.h"
-#include <iostream>
+#include "client/console.h"
namespace client {
-std::ostream & Console::message()
+std::ostream & Console::messagestream()
{
return (std::cout << ". ");
}
-std::ostream & Console::warning()
+std::ostream & Console::warningstream()
{
return (std::cout << "! ");
}
-std::ostream & Console::debug()
+std::ostream & Console::debugstream()
{
return (std::cout << "? ");
}