| 89 | ObjectParser::~ObjectParser() = default; |
| 90 | |
| 91 | Status ObjectParser::Parse(std::string_view json) { return impl_->Parse(json); } |
| 92 | |
| 93 | Result<std::string> ObjectParser::GetString(const char* key) const { |
| 94 | return impl_->GetString(key); |
no outgoing calls