/srv/osrm/osrm-backend/include/customizer
NameSizeModeActions
cell_customizer.hpp91610644editdlrm
cell_metric.hpp7970644editdlrm
customizer.hpp3060644editdlrm
customizer_config.hpp10410644editdlrm
edge_based_graph.hpp52060644editdlrm
files.hpp37930644editdlrm
serialization.hpp31580644editdlrm
Edit: /srv/osrm/osrm-backend/include/customizer/customizer_config.hpp (1041B)
#ifndef OSRM_CUSTOMIZE_CUSTOMIZER_CONFIG_HPP #define OSRM_CUSTOMIZE_CUSTOMIZER_CONFIG_HPP #include #include #include #include "storage/io_config.hpp" #include "updater/updater_config.hpp" namespace osrm::customizer { struct CustomizationConfig final : storage::IOConfig { CustomizationConfig() : IOConfig({".osrm.ebg", ".osrm.partition", ".osrm.cells", ".osrm.ebg_nodes", ".osrm.properties", ".osrm.enw"}, {}, {".osrm.cell_metrics", ".osrm.mldgr"}), requested_num_threads(0) { } void UseDefaultOutputNames(const boost::filesystem::path &base) { IOConfig::UseDefaultOutputNames(base); updater_config.UseDefaultOutputNames(base); } unsigned requested_num_threads; updater::UpdaterConfig updater_config; }; } // namespace osrm::customizer #endif // OSRM_CUSTOMIZE_CUSTOMIZER_CONFIG_HPP