| 339 | } // namespace |
| 340 | |
| 341 | string DebugPrint(Maxspeed maxspeed) |
| 342 | { |
| 343 | ostringstream oss; |
| 344 | oss << "Maxspeed { m_units: " << DebugPrint(maxspeed.GetUnits()) |
| 345 | << ", m_forward: " << PrintMaxspeedType(maxspeed.GetForward()) |
| 346 | << ", m_backward: " << PrintMaxspeedType(maxspeed.GetBackward()) << " }"; |
| 347 | return oss.str(); |
| 348 | } |
| 349 | |
| 350 | string DebugPrint(SpeedMacro maxspeed) |
| 351 | { |
nothing calls this directly
no test coverage detected