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
10std::string
11to_string(Value const&);
12
14std::string
15pretty(Value const&);
16
17} // namespace json
Represents a JSON value.
Definition json_value.h:130
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