| 375 | } |
| 376 | |
| 377 | std::vector<std::string> JsonObject::get_string_array( const std::string &name ) const |
| 378 | { |
| 379 | std::vector<std::string> ret; |
| 380 | for( const std::string entry : get_array( name ) ) { |
| 381 | ret.push_back( entry ); |
| 382 | } |
| 383 | return ret; |
| 384 | } |
| 385 | |
| 386 | JsonObject JsonObject::get_object( const std::string &name ) const |
| 387 | { |
no test coverage detected