Files
rippled/include/xrpl/json/to_string.h
2026-07-13 10:40:40 +00:00

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