rippled
Loading...
Searching...
No Matches
to_string.h
1#pragma once
2
3#include <ostream>
4#include <string>
5
6namespace Json {
7
8class Value;
9
12to_string(Value const&);
13
16pretty(Value const&);
17
20operator<<(std::ostream&, Value const& root);
21
22} // namespace Json
JSON (JavaScript Object Notation).
Definition json_errors.h:5
std::string pretty(Value const &)
Writes a Json::Value to an std::string.
Definition to_string.cpp:15
std::string to_string(Value const &)
Writes a Json::Value to an std::string.
Definition to_string.cpp:9
std::ostream & operator<<(std::ostream &, Value const &root)
Output using the StyledStreamWriter.