osrm-backend/include/engine/api/trip_parameters.hpp
2016-04-05 22:58:32 +02:00

24 lines
315 B
C++

#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
{
// bool IsValid() const; Falls back to base class
};
}
}
}
#endif