mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
20 lines
356 B
C++
20 lines
356 B
C++
#ifndef XRPL_SERVER_JSONRPCUTIL_H_INCLUDED
|
|
#define XRPL_SERVER_JSONRPCUTIL_H_INCLUDED
|
|
|
|
#include <xrpl/beast/utility/Journal.h>
|
|
#include <xrpl/json/Output.h>
|
|
#include <xrpl/json/json_value.h>
|
|
|
|
namespace ripple {
|
|
|
|
void
|
|
HTTPReply(
|
|
int nStatus,
|
|
std::string const& strMsg,
|
|
Json::Output const&,
|
|
beast::Journal j);
|
|
|
|
} // namespace ripple
|
|
|
|
#endif
|