mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
This change updates the ColumnLimit from 80 to 120, and applies clang-format to reformat the code.
43 lines
976 B
C++
43 lines
976 B
C++
#include <xrpl/protocol/LedgerFormats.h>
|
|
#include <xrpl/protocol/SField.h>
|
|
#include <xrpl/protocol/SOTemplate.h>
|
|
#include <xrpl/protocol/jss.h>
|
|
|
|
#include <initializer_list>
|
|
|
|
namespace xrpl {
|
|
|
|
LedgerFormats::LedgerFormats()
|
|
{
|
|
// Fields shared by all ledger formats:
|
|
static std::initializer_list<SOElement> const commonFields{
|
|
{sfLedgerIndex, soeOPTIONAL},
|
|
{sfLedgerEntryType, soeREQUIRED},
|
|
{sfFlags, soeREQUIRED},
|
|
};
|
|
|
|
#pragma push_macro("UNWRAP")
|
|
#undef UNWRAP
|
|
#pragma push_macro("LEDGER_ENTRY")
|
|
#undef LEDGER_ENTRY
|
|
|
|
#define UNWRAP(...) __VA_ARGS__
|
|
#define LEDGER_ENTRY(tag, value, name, rpcName, fields) add(jss::name, tag, UNWRAP fields, commonFields);
|
|
|
|
#include <xrpl/protocol/detail/ledger_entries.macro>
|
|
|
|
#undef LEDGER_ENTRY
|
|
#pragma pop_macro("LEDGER_ENTRY")
|
|
#undef UNWRAP
|
|
#pragma pop_macro("UNWRAP")
|
|
}
|
|
|
|
LedgerFormats const&
|
|
LedgerFormats::getInstance()
|
|
{
|
|
static LedgerFormats instance;
|
|
return instance;
|
|
}
|
|
|
|
} // namespace xrpl
|