mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-23 15:10:34 +00:00
22 lines
283 B
C++
22 lines
283 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
|