osrm-backend/include/engine/guidance/assemble_overview.hpp

19 lines
446 B
C++
Raw Permalink Normal View History

2016-01-28 10:28:44 -05:00
#ifndef ENGINE_GUIDANCE_ASSEMBLE_OVERVIEW_HPP
#define ENGINE_GUIDANCE_ASSEMBLE_OVERVIEW_HPP
#include "engine/guidance/leg_geometry.hpp"
#include "util/coordinate.hpp"
2016-01-28 10:28:44 -05:00
#include <vector>
namespace osrm::engine::guidance
2016-01-28 10:28:44 -05:00
{
std::vector<util::Coordinate> assembleOverview(const std::vector<LegGeometry> &leg_geometries,
const bool use_simplification);
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