osrm-backend/include/customizer/customizer.hpp

18 lines
306 B
C++
Raw Permalink Normal View History

2017-03-06 09:50:04 -05:00
#ifndef OSRM_CUSTOMIZE_CUSTOMIZER_HPP
#define OSRM_CUSTOMIZE_CUSTOMIZER_HPP
#include "customizer/customizer_config.hpp"
namespace osrm::customizer
2017-03-06 09:50:04 -05:00
{
class Customizer
{
public:
int Run(const CustomizationConfig &config);
};
2022-12-20 12:00:11 -05:00
} // namespace osrm::customizer
2017-03-06 09:50:04 -05:00
#endif // OSRM_CUSTOMIZE_CUSTOMIZER_HPP