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

19 lines
365 B
C++

#ifndef OSRM_PARTITIONER_PARTITIONER_HPP_
#define OSRM_PARTITIONER_PARTITIONER_HPP_
#include "partitioner/partitioner_config.hpp"
namespace osrm::partitioner
{
// tool access to the recursive partitioner
class Partitioner
{
public:
int Run(const PartitionerConfig &config);
};
} // namespace osrm::partitioner
#endif // OSRM_PARTITIONER_PARTITIONER_HPP_