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.h')
-rw-r--r--src/client/console.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/client/console.h b/src/client/console.h
index 1dc7109..21d5df9 100644
--- a/src/client/console.h
+++ b/src/client/console.h
@@ -4,8 +4,8 @@
the terms of the GNU General Public License version 2
*/
-#ifndef __INCLUDED_CLIENTCONSOLE_H__
-#define __INCLUDED_CLIENTCONSOLE_H__
+#ifndef __INCLUDED_CLIENT_CONSOLE_H__
+#define __INCLUDED_CLIENT_CONSOLE_H__
#include "common/console.h"
@@ -15,17 +15,17 @@ namespace client {
class Console : public common::Console {
public:
/// stream to send normal messages too
- virtual std::ostream & message();
+ virtual std::ostream & messagestream();
/// stream to send warning messages too
- virtual std::ostream & warning();
+ virtual std::ostream & warningstream();
/// stream to send debug messages too
- virtual std::ostream & debug();
+ virtual std::ostream & debugstream();
-}; // class Console
+};
-} // namespace server
+}
-#endif // __INCLUDED_CLIENTCONSOLE_H__
+#endif // __INCLUDED_CLIENT_CONSOLE_H__