[transit] Feature id field for edge.

This commit is contained in:
Olga Khlopkova 2020-10-20 14:55:44 +03:00 committed by Maksim Andrianov
parent dad7243eda
commit 585f82c784

View file

@ -150,8 +150,15 @@ struct EdgeData
: m_shapeLink(shapeLink), m_weight(weight)
{
}
explicit EdgeData(EdgeWeight const & weight) : m_weight(weight) {}
ShapeLink m_shapeLink;
EdgeWeight m_weight = 0;
// Feature id for cross-mwm transit section. It is used in Segment class as a feature id for
// transit routing case.
uint32_t m_featureId = 0;
};
struct LineSegment