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-04-26 16:55:57 +0000
committerStijn Buys <ingar@osirion.org>2008-04-26 16:55:57 +0000
commitfe95954f9d17c9dade1827fe5d4cf8cffffddbce (patch)
tree0c5a6826979f32fb26a0d9708bb461fe22df1426 /src/server/console.cc
parenta2c0647e07d178fd69b962205f4b1163682e2d80 (diff)
virtual console::flush()
Diffstat (limited to 'src/server/console.cc')
-rw-r--r--src/server/console.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/server/console.cc b/src/server/console.cc
index 77b5d28..b5d0aaf 100644
--- a/src/server/console.cc
+++ b/src/server/console.cc
@@ -30,6 +30,9 @@ public:
/// stream to send debug messages too
virtual std::ostream & debugstream();
+ /// flush does nothing in this implementation
+ virtual void flush();
+
unsigned long ping;
};
@@ -65,6 +68,10 @@ void shutdown()
//--- private -----------------------------------------------------
+void Console::flush()
+{
+}
+
std::ostream & Console::messagestream()
{
return std::cout;