rippled
Loading...
Searching...
No Matches
to_string.h
1#ifndef XRPL_JSON_TO_STRING_H_INCLUDED
2#define XRPL_JSON_TO_STRING_H_INCLUDED
3
4#include <ostream>
5#include <string>
6
7namespace Json {
8
9class Value;
10
13to_string(Value const&);
14
17pretty(Value const&);
18
21operator<<(std::ostream&, Value const& root);
22
23} // namespace Json
24
25#endif // JSON_TO_STRING_H_INCLUDED
JSON (JavaScript Object Notation).
Definition json_errors.h:6
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.