mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-03 16:56:48 +00:00
18 lines
275 B
C++
18 lines
275 B
C++
#pragma once
|
|
|
|
#include <xrpl/json/json_writer.h>
|
|
|
|
#include <string>
|
|
|
|
namespace json {
|
|
|
|
/** Writes a json::Value to an std::string. */
|
|
std::string
|
|
to_string(Value const&);
|
|
|
|
/** Writes a json::Value to an std::string. */
|
|
std::string
|
|
pretty(Value const&);
|
|
|
|
} // namespace json
|