Skip to content
Snippets Groups Projects
Commit 3bd6bac8 authored by Andreas Rauschert's avatar Andreas Rauschert
Browse files

Merge branch 'wolfram_update_reference_line_according_new_osi_version' into 'main'

Update reference line type according new osi version

See merge request !8
parents f72ba9f3 6b151dee
No related branches found
No related tags found
1 merge request!8Update reference line type according new osi version
......@@ -27,8 +27,15 @@ struct ReferenceLinePoint
struct ReferenceLine
{
enum class Type : std::uint8_t
{
TYPE_POLYLINE = 0,
TYPE_POLYLINE_WITH_T_AXIS = 1
};
Identifier id{UndefinedId};
std::vector<ReferenceLinePoint> poly_line;
std::vector<ReferenceLinePoint> poly_line{};
Type type{Type::TYPE_POLYLINE};
};
} // namespace map_api
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment