| 23 | } // namespace |
| 24 | |
| 25 | std::string DebugPrint(RouteSegment::RoadNameInfo const & rni) |
| 26 | { |
| 27 | stringstream out; |
| 28 | out << "RoadNameInfo " |
| 29 | << "{ m_name = " << rni.m_name << ", m_ref = " << rni.m_ref << ", m_junction_ref = " << rni.m_junction_ref |
| 30 | << ", m_destination_ref = " << rni.m_destination_ref << ", m_destination = " << rni.m_destination |
| 31 | << ", m_isLink = " << rni.m_isLink << " }"; |
| 32 | return out.str(); |
| 33 | } |
| 34 | |
| 35 | std::string DebugPrint(RouteSegment::SpeedCamera const & rhs) |
| 36 | { |
no test coverage detected