| 360 | } |
| 361 | |
| 362 | bool GeoURLInfo::SetLon(double x) |
| 363 | { |
| 364 | if (mercator::ValidLon(x)) |
| 365 | { |
| 366 | m_lon = x; |
| 367 | return true; |
| 368 | } |
| 369 | return false; |
| 370 | } |
| 371 | |
| 372 | bool UnifiedParser::Parse(std::string const & raw, GeoURLInfo & res) |
| 373 | { |
no test coverage detected