osrm-backend/include/guidance/turn_lane_augmentation.hpp

18 lines
507 B
C++
Raw 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"
#include "util/attributes.hpp"
2016-05-13 13:18:00 -04:00
namespace osrm::guidance::lanes
2016-05-13 13:18:00 -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
#endif /* OSRM_GUIDANCE_TURN_LANE_AUGMENTATION_HPP_ */