Skip to content
Snippets Groups Projects
Commit 6b151dee authored by Daniil Nikulin's avatar Daniil Nikulin Committed by Andreas Rauschert
Browse files

feat: Update reference line type according new osi version

parent f72ba9f3
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 ...@@ -27,8 +27,15 @@ struct ReferenceLinePoint
struct ReferenceLine struct ReferenceLine
{ {
enum class Type : std::uint8_t
{
TYPE_POLYLINE = 0,
TYPE_POLYLINE_WITH_T_AXIS = 1
};
Identifier id{UndefinedId}; Identifier id{UndefinedId};
std::vector<ReferenceLinePoint> poly_line; std::vector<ReferenceLinePoint> poly_line{};
Type type{Type::TYPE_POLYLINE};
}; };
} // namespace map_api } // 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