2016-01-28 10:28:44 -05:00
|
|
|
#ifndef ENGINE_API_TRIP_PARAMETERS_HPP
|
|
|
|
#define ENGINE_API_TRIP_PARAMETERS_HPP
|
|
|
|
|
|
|
|
#include "engine/api/route_parameters.hpp"
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace osrm
|
|
|
|
{
|
|
|
|
namespace engine
|
|
|
|
{
|
|
|
|
namespace api
|
|
|
|
{
|
|
|
|
|
|
|
|
struct TripParameters : public RouteParameters
|
|
|
|
{
|
2016-03-03 08:26:13 -05:00
|
|
|
// bool IsValid() const; Falls back to base class
|
2016-01-28 10:28:44 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|