1
0
Fork 0
flightgear/src/Main/logger.hxx
Torsten Dreyer 1050a35d92 prepare for subsystem_mgr.hxx no longer including props.hxx
subsystem_mgr.hxx will soon no longer include props.hxx since it
does not (need to) know about properties at all.
2011-02-27 12:53:47 +01:00

52 lines
1,000 B
C++

// logger.hxx - log properties.
// Written by David Megginson, started 2002.
//
// This file is in the Public Domain, and comes with no warranty.
#ifndef __LOGGER_HXX
#define __LOGGER_HXX 1
#include <iosfwd>
#include <vector>
#include <simgear/compiler.h>
#include <simgear/structure/subsystem_mgr.hxx>
#include <simgear/props/props.hxx>
/**
* Log any property values to any number of CSV files.
*/
class FGLogger : public SGSubsystem
{
public:
FGLogger ();
virtual ~FGLogger ();
// Implementation of SGSubsystem
virtual void init ();
virtual void reinit ();
virtual void bind ();
virtual void unbind ();
virtual void update (double dt);
private:
/**
* A single instance of a log file (the logger can contain many).
*/
struct Log {
Log ();
virtual ~Log ();
std::vector<SGPropertyNode_ptr> nodes;
std::ostream * output;
long interval_ms;
double last_time_ms;
char delimiter;
};
std::vector<Log> _logs;
};
#endif // __LOGGER_HXX