| 1243 | } |
| 1244 | |
| 1245 | String writeString(StreamWriter::Factory const& factory, Value const& root) { |
| 1246 | OStringStream sout; |
| 1247 | StreamWriterPtr const writer(factory.newStreamWriter()); |
| 1248 | writer->write(root, &sout); |
| 1249 | return sout.str(); |
| 1250 | } |
| 1251 | |
| 1252 | OStream& operator<<(OStream& sout, Value const& root) { |
| 1253 | StreamWriterBuilder builder; |
no test coverage detected