osrm-backend/include/engine/guidance/step_maneuver.hpp
2016-04-05 22:58:32 +02:00

26 lines
482 B
C++

#ifndef ENGINE_GUIDANCE_STEP_MANEUVER_HPP
#define ENGINE_GUIDANCE_STEP_MANEUVER_HPP
#include "util/coordinate.hpp"
#include "extractor/guidance/turn_instruction.hpp"
namespace osrm
{
namespace engine
{
namespace guidance
{
struct StepManeuver
{
util::Coordinate location;
double bearing_before;
double bearing_after;
extractor::guidance::TurnInstruction instruction;
unsigned exit;
};
} // namespace guidance
} // namespace engine
} // namespace osrmn
#endif