| 1245 | } |
| 1246 | |
| 1247 | JSONCPP_STRING writeString(StreamWriter::Factory const& factory, |
| 1248 | Value const& root) { |
| 1249 | JSONCPP_OSTRINGSTREAM sout; |
| 1250 | StreamWriterPtr const writer(factory.newStreamWriter()); |
| 1251 | writer->write(root, &sout); |
| 1252 | return sout.str(); |
| 1253 | } |
| 1254 | |
| 1255 | JSONCPP_OSTREAM& operator<<(JSONCPP_OSTREAM& sout, Value const& root) { |
| 1256 | StreamWriterBuilder builder; |
no test coverage detected