Skip to content
Snippets Groups Projects

Update reference line type according new osi version

1 file
+ 8
1
Compare changes
  • Side-by-side
  • Inline
@@ -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
Loading