#ifndef WAYPOINT_HH #define WAYPOINT_HH #include #include struct Waypoint { int frame; QVector3D pos; double computed_speed = 0; Waypoint(unsigned frame, QVector3D pos); Waypoint(const QJsonObject &json); }; #endif