osrm-backend/include/guidance/turn_classification.hpp

24 lines
560 B
C++
Raw Normal View History

2016-02-24 04:29:23 -05:00
#ifndef OSRM_GUIDANCE_TURN_CLASSIFICATION_HPP_
#define OSRM_GUIDANCE_TURN_CLASSIFICATION_HPP_
#include "guidance/intersection.hpp"
2016-02-24 04:29:23 -05:00
#include "util/coordinate.hpp"
2016-05-27 15:05:04 -04:00
#include "util/guidance/bearing_class.hpp"
#include "util/guidance/entry_class.hpp"
2016-02-24 04:29:23 -05:00
#include <utility>
2016-02-24 04:29:23 -05:00
namespace osrm
{
namespace guidance
{
2016-05-27 15:05:04 -04:00
std::pair<util::guidance::EntryClass, util::guidance::BearingClass>
classifyIntersection(Intersection intersection, const osrm::util::Coordinate &location);
2016-02-24 04:29:23 -05:00
} // namespace guidance
} // namespace osrm
#endif // OSRM_GUIDANCE_TURN_CLASSIFICATION_HPP_