| 20 | }; |
| 21 | |
| 22 | bool common_json_parse( |
| 23 | const std::string & input, |
| 24 | const std::string & healing_marker, |
| 25 | common_json & out) |
| 26 | { |
| 27 | std::string::const_iterator it = input.begin(); |
| 28 | const auto end = input.end(); |
| 29 | return common_json_parse(it, end, healing_marker, out); |
| 30 | } |
| 31 | |
| 32 | bool common_json_parse( |
| 33 | std::string::const_iterator & it, |