2016-02-24 04:29:23 -05:00
|
|
|
#ifndef ENGINE_GUIDANCE_POST_PROCESSING_HPP
|
|
|
|
#define ENGINE_GUIDANCE_POST_PROCESSING_HPP
|
|
|
|
|
|
|
|
#include "engine/internal_route_result.hpp"
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace osrm
|
|
|
|
{
|
|
|
|
namespace engine
|
|
|
|
{
|
|
|
|
namespace guidance
|
|
|
|
{
|
|
|
|
|
2016-03-01 16:30:31 -05:00
|
|
|
std::vector<std::vector<PathData>> postProcess(std::vector<std::vector<PathData>> path_data);
|
2016-02-24 04:29:23 -05:00
|
|
|
|
|
|
|
} // namespace guidance
|
|
|
|
} // namespace engine
|
|
|
|
} // namespace osrm
|
|
|
|
|
|
|
|
#endif // ENGINE_GUIDANCE_POST_PROCESSING_HPP
|