| 233 | } |
| 234 | |
| 235 | std::string WktParser::ValueStr(const std::string& key) { |
| 236 | std::string result; |
| 237 | if (HasValueStr(key, result)) { |
| 238 | return result; |
| 239 | } else { |
| 240 | return ""; |
| 241 | } |
| 242 | } |
| 243 | |
| 244 | bool WktParser::HasValueInt(const std::string& key, int& val) { |
| 245 | std::string res; |
nothing calls this directly
no outgoing calls
no test coverage detected