#ifndef GROUNDTRUTHWAY_H #define GROUNDTRUTHWAY_H #include #include /** * interpolated ground-trouth based on timed check-points */ class GroundTruthWay : public Interpolator { public: Point3 getPosAtTime(const uint64_t ts) const { return get(ts); } /** get the ground truth way */ const std::vector& getWay() const {return entries;} }; #endif // GROUNDTRUTHWAY_H