osrm-backend/include/updater/data_source.hpp
Siarhei Fedartsou e6fcf465b7 wip
2022-11-26 22:31:13 +01:00

22 lines
553 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