23 lines
427 B
C++
23 lines
427 B
C++
#ifndef ENGINE_GUIDANCE_ASSEMBLE_OVERVIEW_HPP
|
|
#define ENGINE_GUIDANCE_ASSEMBLE_OVERVIEW_HPP
|
|
|
|
#include "engine/guidance/leg_geometry.hpp"
|
|
|
|
#include <vector>
|
|
|
|
namespace osrm
|
|
{
|
|
namespace engine
|
|
{
|
|
namespace guidance
|
|
{
|
|
|
|
std::vector<util::FixedPointCoordinate>
|
|
assembleOverview(const std::vector<LegGeometry> &leg_geometries, const bool use_simplification);
|
|
|
|
} // namespace guidance
|
|
} // namespace engine
|
|
} // namespace osrm
|
|
|
|
#endif
|