]> git.mxchange.org Git - flightgear.git/commitdiff
iostream cleanup wip
authortimoore <timoore>
Mon, 2 Jun 2008 21:09:10 +0000 (21:09 +0000)
committertimoore <timoore>
Mon, 2 Jun 2008 21:09:10 +0000 (21:09 +0000)
src/Main/logger.hxx

index 273ccd6b014b95726f90cd33f0ec741f72a861f4..d9ffb73c3212dd069220a460d8141fcea5b99b21 100644 (file)
@@ -14,7 +14,7 @@
 #  include <config.h>
 #endif
 
-#include <iostream>
+#include <ostream>
 #include <vector>
 
 #include <simgear/compiler.h>
@@ -52,14 +52,14 @@ private:
   struct Log {
     Log ();
     virtual ~Log ();
-    vector<SGPropertyNode_ptr> nodes;
-    ostream * output;
+    std::vector<SGPropertyNode_ptr> nodes;
+    std::ostream * output;
     long interval_ms;
     double last_time_ms;
     char delimiter;
   };
 
-  vector<Log> _logs;
+  std::vector<Log> _logs;
 
 };