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

25 lines
496 B
C++
Raw 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
{
namespace engine
{
namespace guidance
{
std::vector<util::Coordinate> assembleOverview(const std::vector<LegGeometry> &leg_geometries,
const bool use_simplification);
2016-01-28 10:28:44 -05:00
} // namespace guidance
} // namespace engine
} // namespace osrm
#endif