| 5785 | } |
| 5786 | |
| 5787 | String writeString(StreamWriter::Factory const &factory, Value const &root) |
| 5788 | { |
| 5789 | OStringStream sout; |
| 5790 | StreamWriterPtr const writer(factory.newStreamWriter()); |
| 5791 | writer->write(root, &sout); |
| 5792 | return sout.str(); |
| 5793 | } |
| 5794 | |
| 5795 | OStream &operator<<(OStream &sout, Value const &root) |
| 5796 | { |