Line -------------------------------------------------------------------------------------------
| 304 | |
| 305 | // Line ------------------------------------------------------------------------------------------- |
| 306 | Line::Line(LineId id, std::string const & number, std::string const & title, std::string const & type, |
| 307 | std::string const & color, NetworkId networkId, Ranges const & stopIds, Weight interval) |
| 308 | : m_id(id) |
| 309 | , m_number(number) |
| 310 | , m_title(title) |
| 311 | , m_type(type) |
| 312 | , m_color(color) |
| 313 | , m_networkId(networkId) |
| 314 | , m_stopIds(stopIds) |
| 315 | , m_interval(interval) |
| 316 | {} |
| 317 | |
| 318 | bool Line::IsEqualForTesting(Line const & line) const |
| 319 | { |