#ifndef GRIDWALKHELPER_H #define GRIDWALKHELPER_H #include "../../geo/Heading.h" class GridWalkHelper { public: /** get the heading-change between the two given locations */ template static Heading getHeading(const T& from, const T& to) { return Heading(from.x_cm, from.y_cm, to.x_cm, to.y_cm); } }; #endif // GRIDWALKHELPER_H