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