mirror of
https://github.com/XRPLF/rippled.git
synced 2026-02-09 16:32:36 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
23 lines
402 B
C++
23 lines
402 B
C++
#pragma once
|
|
|
|
#include <ostream>
|
|
#include <string>
|
|
|
|
namespace Json {
|
|
|
|
class Value;
|
|
|
|
/** 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&);
|
|
|
|
/** Output using the StyledStreamWriter. @see Json::operator>>(). */
|
|
std::ostream&
|
|
operator<<(std::ostream&, Value const& root);
|
|
|
|
} // namespace Json
|