Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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__