#ifndef OSRM_UPDATER_UPDATER_HPP #define OSRM_UPDATER_UPDATER_HPP #include "updater/updater_config.hpp" #include "extractor/edge_based_edge.hpp" #include namespace osrm { namespace updater { class Updater { public: Updater(const UpdaterConfig &config) :config(config) {} EdgeID LoadAndUpdateEdgeExpandedGraph( std::vector &edge_based_edge_list, std::vector &node_weights) const; private: UpdaterConfig config; }; } } #endif