Home | History | Annotate | Download | only in jsoncpp

Lines Matching defs:Writer

278 // writer.h
329 /** \brief Configuration passed to reader and writer.
330 * This configuration object can be used to force the Reader or Writer
1664 // Beginning of content of file: include/json/writer.h
1699 std::unique_ptr<StreamWriter> const writer(
1701 writer->write(value, &std::cout);
1747 std::unique_ptr<Json::StreamWriter> writer(
1749 writer->write(value, &std::cout);
1764 - Drop the "null" string from the writer's output for nullValues.
1807 class JSON_API Writer {
1809 virtual ~Writer();
1823 class JSON_API FastWriter : public Writer {
1831 /** \brief Drop the "null" string from the writer's output for nullValues.
1840 public: // overridden from Writer
1876 class JSON_API StyledWriter : public Writer {
1881 public: // overridden from Writer
1947 * \note There is no point in deriving from Writer, since write() should not
2000 // End of content of file: include/json/writer.h