1
0
Fork 0

iostream cleanup wip

This commit is contained in:
timoore 2008-06-02 21:09:10 +00:00
parent a251fd35cb
commit fe1dd9474e

View 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;
};