osrm-backend/include/engine/guidance/step_maneuver.hpp

27 lines
396 B
C++
Raw Normal View History

2016-01-28 10:28:44 -05:00
#ifndef ENGINE_GUIDANCE_STEP_MANEUVER_HPP
#define ENGINE_GUIDANCE_STEP_MANEUVER_HPP
#include "util/coordinate.hpp"
#include "extractor/turn_instructions.hpp"
namespace osrm
{
namespace engine
{
namespace guidance
{
struct StepManeuver
{
util::FixedPointCoordinate location;
double heading_before;
double heading_after;
extractor::TurnInstruction instruction;
};
}
}
}
#endif