| 5302 | } |
| 5303 | |
| 5304 | String writeString(StreamWriter::Factory const &factory, Value const &root) { |
| 5305 | OStringStream sout; |
| 5306 | StreamWriterPtr const writer(factory.newStreamWriter()); |
| 5307 | writer->write(root, &sout); |
| 5308 | return sout.str(); |
| 5309 | } |
| 5310 | |
| 5311 | OStream &operator<<(OStream &sout, Value const &root) { |
| 5312 | StreamWriterBuilder builder; |
no test coverage detected