Files
rippled/include/xrpl/json/to_string.h
2026-04-17 13:30:52 +00:00

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