#ifndef POLYLINE_FORMATTER_HPP #define POLYLINE_FORMATTER_HPP #include "osrm/json_container.hpp" #include #include namespace osrm { namespace engine { struct SegmentInformation; struct PolylineFormatter { util::json::String printEncodedString(const std::vector &polyline) const; util::json::Array printUnencodedString(const std::vector &polyline) const; }; } } #endif /* POLYLINE_FORMATTER_HPP */