mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-23 15:10:34 +00:00
30 lines
506 B
C++
30 lines
506 B
C++
#pragma once
|
|
|
|
#include <xrpl/basics/Blob.h>
|
|
#include <xrpl/basics/strHex.h>
|
|
#include <xrpl/protocol/STObject.h>
|
|
#include <xrpl/protocol/Serializer.h>
|
|
|
|
#include <string>
|
|
|
|
namespace xrpl {
|
|
|
|
/** Serialize an object to a blob. */
|
|
template <class Object>
|
|
Blob
|
|
serializeBlob(Object const& o)
|
|
{
|
|
Serializer s;
|
|
o.add(s);
|
|
return s.peekData();
|
|
}
|
|
|
|
/** Serialize an object to a hex string. */
|
|
inline std::string
|
|
serializeHex(STObject const& o)
|
|
{
|
|
return strHex(serializeBlob(o));
|
|
}
|
|
|
|
} // namespace xrpl
|