#include "WaypointLog.h"
#include "Syslog.h"

class test {
public:
  static WaypointLog log;
};

WaypointLog test::log(DataLog::AsciiFormat);

main()
{
  //WaypointLog log(DataLog::AsciiFormat);

  test *t = new test();

  Syslog::write("WaypointLog object created, check the size of the log file...");
  sleep(30);
  test::log.write("wplog-test", 0., 1., 2., 3., 4.);
}
