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:36:33 +0000
committerStijn Buys <ingar@osirion.org>2008-01-30 17:36:33 +0000
commit107ed6e6af67ff81708db22603f626a54c9cb198 (patch)
tree7aaf7f00a993b8979db02a2ae1c482c4f5d26e65 /src/server/console.h
parentd584d29ac49182130d643c9221047e0acb5cfa01 (diff)
accomodate the new modules
Diffstat (limited to 'src/server/console.h')
-rw-r--r--src/server/console.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/server/console.h b/src/server/console.h
index 69f2ea8..45563a4 100644
--- a/src/server/console.h
+++ b/src/server/console.h
@@ -4,28 +4,28 @@
the terms of the GNU General Public License version 2
*/
-#ifndef __INCLUDED_SERVERCONSOLE_H__
-#define __INCLUDED_SERVERCONSOLE_H__
+#ifndef __INCLUDED_SERVER_CONSOLE_H__
+#define __INCLUDED_SERVER_CONSOLE_H__
#include "common/console.h"
namespace server {
-/// Interface for a console object that writes messages on the screen
+/// the server console
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_SERVERCONSOLE_H__
+#endif // __INCLUDED_SERVER_CONSOLE_H__