osrm-backend/include/engine/api/flatbuffers/table.fbs
2019-08-26 11:08:56 +03:00

15 lines
298 B
Plaintext

include "waypoint.fbs";
namespace osrm.engine.api.fbresult;
table VectorUint {
column: [uint];
}
table Table {
waypoints: [Waypoint];
durations: [VectorUint];
distances: [VectorUint];
sources: [Waypoint];
destinations: [Waypoint];
fallback_speed_cells: [VectorUint];
}