mirror of
https://github.com/XRPLF/rippled.git
synced 2026-02-09 08:22:32 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
14 lines
207 B
C++
14 lines
207 B
C++
#pragma once
|
|
|
|
#include <xrpl/json/json_value.h>
|
|
|
|
namespace xrpl {
|
|
|
|
// VFALCO NOTE these are deprecated
|
|
bool
|
|
isRpcError(Json::Value jvResult);
|
|
Json::Value
|
|
rpcError(error_code_i iError);
|
|
|
|
} // namespace xrpl
|