osrm-backend/include/engine/api/table_parameters.hpp
2016-03-18 17:32:58 +01:00

28 lines
385 B
C++

#ifndef ENGINE_API_TABLE_PARAMETERS_HPP
#define ENGINE_API_TABLE_PARAMETERS_HPP
#include "engine/api/base_parameters.hpp"
#include <vector>
namespace osrm
{
namespace engine
{
namespace api
{
struct TableParameters : public BaseParameters
{
std::vector<bool> is_source;
std::vector<bool> is_destination;
bool IsValid() const;
};
}
}
}
#endif // ROUTE_PARAMETERS_HPP