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
|
|
|
|
{
|
2017-03-10 17:35:46 -05:00
|
|
|
namespace customizer
|
2017-03-06 09:50:04 -05:00
|
|
|
{
|
|
|
|
|
|
|
|
class Customizer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
int Run(const CustomizationConfig &config);
|
|
|
|
};
|
|
|
|
|
2017-03-10 17:35:46 -05:00
|
|
|
} // namespace customizer
|
2017-03-06 09:50:04 -05:00
|
|
|
} // namespace osrm
|
|
|
|
|
|
|
|
#endif // OSRM_CUSTOMIZE_CUSTOMIZER_HPP
|