osrm-backend/include/customizer/customizer.hpp
2022-12-20 18:00:11 +01:00

18 lines
306 B
C++

#ifndef OSRM_CUSTOMIZE_CUSTOMIZER_HPP
#define OSRM_CUSTOMIZE_CUSTOMIZER_HPP
#include "customizer/customizer_config.hpp"
namespace osrm::customizer
{
class Customizer
{
public:
int Run(const CustomizationConfig &config);
};
} // namespace osrm::customizer
#endif // OSRM_CUSTOMIZE_CUSTOMIZER_HPP