#ifndef XRPL_PROTOCOL_SERIALIZE_H_INCLUDED #define XRPL_PROTOCOL_SERIALIZE_H_INCLUDED #include #include #include namespace ripple { /** Serialize an object to a blob. */ template 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 ripple #endif