osrm-backend/include/guidance/turn_lane_augmentation.hpp

16 lines
482 B
C++
Raw Permalink Normal View History

#ifndef OSRM_GUIDANCE_TURN_LANE_AUGMENTATION_HPP_
#define OSRM_GUIDANCE_TURN_LANE_AUGMENTATION_HPP_
2016-05-13 13:18:00 -04:00
#include "guidance/intersection.hpp"
#include "guidance/turn_lane_data.hpp"
2016-05-13 13:18:00 -04:00
namespace osrm::guidance::lanes
2016-05-13 13:18:00 -04:00
{
[[nodiscard]] LaneDataVector handleNoneValueAtSimpleTurn(LaneDataVector lane_data,
const Intersection &intersection);
2016-05-13 13:18:00 -04:00
2022-12-20 12:00:11 -05:00
} // namespace osrm::guidance::lanes
2016-05-13 13:18:00 -04:00
#endif /* OSRM_GUIDANCE_TURN_LANE_AUGMENTATION_HPP_ */