diff --git a/include/osrm/match_parameters.hpp b/include/osrm/match_parameters.hpp new file mode 100644 index 000000000..3a54a5997 --- /dev/null +++ b/include/osrm/match_parameters.hpp @@ -0,0 +1,11 @@ +#ifndef GLOBAL_MATCH_PARAMETERS_HPP +#define GLOBAL_MATCH_PARAMETERS_HPP + +#include "engine/api/match_parameters.hpp" + +namespace osrm +{ + using engine::api::MatchParameters; +} + +#endif diff --git a/include/osrm/nearest_parameters.hpp b/include/osrm/nearest_parameters.hpp new file mode 100644 index 000000000..673f5fa19 --- /dev/null +++ b/include/osrm/nearest_parameters.hpp @@ -0,0 +1,11 @@ +#ifndef GLOBAL_NEAREST_PARAMETERS_HPP +#define GLOBAL_NEAREST_PARAMETERS_HPP + +#include "engine/api/nearest_parameters.hpp" + +namespace osrm +{ + using engine::api::NearestParameters; +} + +#endif diff --git a/include/osrm/table_parameters.hpp b/include/osrm/table_parameters.hpp new file mode 100644 index 000000000..09a9b9b6c --- /dev/null +++ b/include/osrm/table_parameters.hpp @@ -0,0 +1,11 @@ +#ifndef GLOBAL_TABLE_PARAMETERS_HPP +#define GLOBAL_TABLE_PARAMETERS_HPP + +#include "engine/api/table_parameters.hpp" + +namespace osrm +{ + using engine::api::TableParameters; +} + +#endif diff --git a/include/osrm/trip_parameters.hpp b/include/osrm/trip_parameters.hpp new file mode 100644 index 000000000..e279063ea --- /dev/null +++ b/include/osrm/trip_parameters.hpp @@ -0,0 +1,11 @@ +#ifndef GLOBAL_TRIP_PARAMETERS_HPP +#define GLOBAL_TRIP_PARAMETERS_HPP + +#include "engine/api/trip_parameters.hpp" + +namespace osrm +{ + using engine::api::TripParameters; +} + +#endif