osrm-backend/include/updater/csv_source.hpp
2022-12-20 18:00:11 +01:00

13 lines
325 B
C++

#ifndef OSRM_UPDATER_CSV_SOURCE_HPP
#define OSRM_UPDATER_CSV_SOURCE_HPP
#include "updater/source.hpp"
namespace osrm::updater::csv
{
SegmentLookupTable readSegmentValues(const std::vector<std::string> &paths);
TurnLookupTable readTurnValues(const std::vector<std::string> &paths);
} // namespace osrm::updater::csv
#endif