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 2200d0b678
commit 1895fee1c9
4 changed files with 44 additions and 0 deletions

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

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

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

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