Adds publicly facing alias headers for parameters

This commit is contained in:
Daniel J. Hofmann
2016-02-18 12:21:03 -08:00
committed by Patrick Niklaus
parent 820d0444fb
commit 26dd3c8cd7
4 changed files with 44 additions and 0 deletions
+11
View File
@@ -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
+11
View File
@@ -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
+11
View File
@@ -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
+11
View File
@@ -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