2017-03-07 19:38:08 -05:00
|
|
|
#ifndef OSRM_UPDATER_CSV_SOURCE_HPP
|
|
|
|
#define OSRM_UPDATER_CSV_SOURCE_HPP
|
|
|
|
|
|
|
|
#include "updater/source.hpp"
|
|
|
|
|
2022-12-11 04:10:26 -05:00
|
|
|
namespace osrm::updater::csv
|
2017-03-07 19:38:08 -05:00
|
|
|
{
|
2017-03-09 17:45:27 -05:00
|
|
|
SegmentLookupTable readSegmentValues(const std::vector<std::string> &paths);
|
|
|
|
TurnLookupTable readTurnValues(const std::vector<std::string> &paths);
|
2020-11-26 10:21:39 -05:00
|
|
|
} // namespace osrm
|
2017-03-07 19:38:08 -05:00
|
|
|
|
|
|
|
#endif
|