#ifndef OSRM_UPDATER_UPDATER_HPP #define OSRM_UPDATER_UPDATER_HPP #include "updater/updater_config.hpp" #include "extractor/edge_based_edge.hpp" #include #include namespace osrm { namespace updater { class Updater { public: Updater(UpdaterConfig config_) : config(std::move(config_)) {} EdgeID LoadAndUpdateEdgeExpandedGraph(std::vector &edge_based_edge_list, std::vector &node_weights, std::uint32_t &connectivity_checksum) const; EdgeID LoadAndUpdateEdgeExpandedGraph( std::vector &edge_based_edge_list, std::vector &node_weights, std::vector &node_durations, // TODO: remove when optional std::uint32_t &connectivity_checksum) const; EdgeID LoadAndUpdateEdgeExpandedGraph( std::vector &edge_based_edge_list, std::vector &node_weights, std::vector &node_durations, // TODO: remove when optional std::vector &node_distances, // TODO: remove when optional std::uint32_t &connectivity_checksum) const; private: UpdaterConfig config; }; } } #endif