xrpld
Loading...
Searching...
No Matches
to_string.h
1#pragma once
2
3#include <xrpl/json/json_writer.h>
4
5#include <string>
6
7namespace json {
8
12std::string
13to_string(Value const&);
14
18std::string
19pretty(Value const&);
20
21} // namespace json
Represents a JSON value.
Definition json_value.h:117
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:16
std::string to_string(Value const &)
Writes a json::Value to an std::string.
Definition to_string.cpp:10