| 119 | |
| 120 | |
| 121 | bool |
| 122 | Reader::parse( const std::string &document, |
| 123 | Value &root, |
| 124 | bool collectComments ) |
| 125 | { |
| 126 | document_ = document; |
| 127 | const char *begin = document_.c_str(); |
| 128 | const char *end = begin + document_.length(); |
| 129 | return parse( begin, end, root, collectComments ); |
| 130 | } |
| 131 | |
| 132 | |
| 133 | bool |
no test coverage detected