check whether has bool member: \p key */
| 74 | |
| 75 | /* check whether has bool member: \p key */ |
| 76 | bool has_member_bool(const std::string& key) { |
| 77 | return has_member(key.c_str()) && m_json_obj[key.c_str()].IsBool(); |
| 78 | } |
| 79 | |
| 80 | /* check whether has int32_t member: \p key */ |
| 81 | bool has_member_int32(const std::string& key) { |
no outgoing calls
no test coverage detected