mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-23 23:20:33 +00:00
34 lines
514 B
C++
34 lines
514 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
|