osrm-backend/include/engine/guidance/assemble_overview.hpp
2016-04-05 22:58:32 +02:00

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