Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-01-30 17:32:00 +0000
committerStijn Buys <ingar@osirion.org>2008-01-30 17:32:00 +0000
commita94049b1a43f83d750b9b5dee031c19a6b1fafb0 (patch)
tree8677f67ba0ba0c0bb80b911d3aa0413d7e2a47c0 /src/client/console.h
parent7b5777160c7615443afc287fbdad6a861d69e36b (diff)
accomodate the new modules
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__