osrm-backend/include/engine/guidance/assemble_overview.hpp
2016-03-18 17:32:58 +01: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