2018-01-05 08:33:53 -05:00
|
|
|
#ifndef OSRM_GUIDANCE_TURN_LANE_AUGMENTATION_HPP_
|
|
|
|
#define OSRM_GUIDANCE_TURN_LANE_AUGMENTATION_HPP_
|
2016-05-13 13:18:00 -04:00
|
|
|
|
2018-01-05 07:05:53 -05:00
|
|
|
#include "guidance/intersection.hpp"
|
|
|
|
#include "guidance/turn_lane_data.hpp"
|
2016-08-02 09:43:29 -04:00
|
|
|
#include "util/attributes.hpp"
|
2016-05-13 13:18:00 -04:00
|
|
|
|
2022-12-11 04:10:26 -05:00
|
|
|
namespace osrm::guidance::lanes
|
2016-05-13 13:18:00 -04:00
|
|
|
{
|
|
|
|
|
2016-08-02 09:43:29 -04:00
|
|
|
OSRM_ATTR_WARN_UNUSED
|
2016-05-13 13:18:00 -04:00
|
|
|
LaneDataVector handleNoneValueAtSimpleTurn(LaneDataVector lane_data,
|
|
|
|
const Intersection &intersection);
|
|
|
|
|
2022-12-20 12:00:11 -05:00
|
|
|
} // namespace osrm::guidance::lanes
|
2016-05-13 13:18:00 -04:00
|
|
|
|
2018-01-05 08:33:53 -05:00
|
|
|
#endif /* OSRM_GUIDANCE_TURN_LANE_AUGMENTATION_HPP_ */
|