| 599 | } |
| 600 | |
| 601 | bool Json::queryBool(String const& q) const { |
| 602 | return JsonPath::pathGet(*this, JsonPath::parseQueryPath, q).toBool(); |
| 603 | } |
| 604 | |
| 605 | int64_t Json::queryInt(String const& q) const { |
| 606 | return JsonPath::pathGet(*this, JsonPath::parseQueryPath, q).toInt(); |
no test coverage detected