2016-01-28 10:28:44 -05:00
|
|
|
#ifndef ENGINE_GUIDANCE_ASSEMBLE_ROUTE_HPP
|
|
|
|
#define ENGINE_GUIDANCE_ASSEMBLE_ROUTE_HPP
|
|
|
|
|
|
|
|
#include "engine/guidance/route.hpp"
|
2016-05-27 15:05:04 -04:00
|
|
|
#include "engine/guidance/route_leg.hpp"
|
2016-01-28 10:28:44 -05:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
2022-12-11 04:10:26 -05:00
|
|
|
namespace osrm::engine::guidance
|
2016-01-28 10:28:44 -05:00
|
|
|
{
|
|
|
|
|
2016-03-03 09:59:02 -05:00
|
|
|
Route assembleRoute(const std::vector<RouteLeg> &route_legs);
|
2016-01-28 10:28:44 -05:00
|
|
|
|
2022-12-20 12:00:11 -05:00
|
|
|
} // namespace osrm::engine::guidance
|
2016-01-28 10:28:44 -05:00
|
|
|
|
|
|
|
#endif
|