]> git.mxchange.org Git - simgear.git/blobdiff - simgear/debug/logstream.cxx
Remove unneeded inclusions of windows.h, GL.h and GLU.H
[simgear.git] / simgear / debug / logstream.cxx
index 255eae07a88542f5580d6f48e3ae72d5cabd49ad..8f6104a8d2780157b893948f69e4c8d1958c44be 100644 (file)
 //
 // $Id$
 
+#include <iostream>
+
 #include "logstream.hxx"
 
-logstream *global_logstream = NULL;
+logstream *logstream::global_logstream = 0;
 
 bool            logbuf::logging_enabled = true;
+#ifdef _MSC_VER
+   bool         logbuf::has_console = true;
+#endif
 sgDebugClass    logbuf::logClass        = SG_NONE;
 sgDebugPriority logbuf::logPriority     = SG_INFO;
 streambuf*      logbuf::sbuf            = NULL;
@@ -87,3 +92,10 @@ logstream::setLogLevels( sgDebugClass c, sgDebugPriority p )
     logbuf::set_log_level( c, p );
 }
 
+void
+logstream::initGlobalLogstream()
+{
+    // Force initialization of cerr.
+    static std::ios_base::Init initializer;
+    global_logstream = new logstream(std::cerr);
+}