iostream cleanup wip
This commit is contained in:
parent
a251fd35cb
commit
fe1dd9474e
1 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue