osrm-backend/include/updater/data_source.hpp
Siarhei Fedartsou 14d3d50263 wip
2022-11-26 21:37:18 +01:00

20 lines
485 B
C++

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