| 368 | } |
| 369 | |
| 370 | std::string ColorDataToString(ColorData const & c) |
| 371 | { |
| 372 | std::ostringstream out; |
| 373 | out << "[" |
| 374 | << "predefined_color:" << PredefinedColorToString(c.m_predefinedColor) << ", " |
| 375 | << "rgba:" << c.m_rgba << "]"; |
| 376 | return out.str(); |
| 377 | } |
| 378 | |
| 379 | std::string LatLonToString(ms::LatLon const & latLon) |
| 380 | { |
no test coverage detected