| 291 | } |
| 292 | |
| 293 | double WktParser::ValueDouble(const std::string& key, const double def) { |
| 294 | double ret; |
| 295 | if (HasValueDouble(key, ret)) { |
| 296 | return ret; |
| 297 | } else { |
| 298 | return def; |
| 299 | } |
| 300 | } |
| 301 | |
| 302 | std::string WktParser::ValueSubStr(const std::string& key, const std::string sub, const std::string def) { |
| 303 | std::string keylc = BOOST_PRE to_lower_copy(key); |
nothing calls this directly
no outgoing calls
no test coverage detected