osrm-backend/include/customizer/customizer.hpp
Dennis Luxen a4aa153ba4 Use nested namespace
It's a mechanical change to modernize the code base
2022-12-11 10:17:17 +01:00

18 lines
294 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
#endif // OSRM_CUSTOMIZE_CUSTOMIZER_HPP