osrm-backend/include/updater/csv_source.hpp
Siarhei Fedartsou 38bb017057 wip
2022-11-26 19:22:32 +01:00

20 lines
511 B
C++

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