mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-24 15:40:26 +00:00
14 lines
229 B
C++
14 lines
229 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
namespace xrpl {
|
|
|
|
/**
|
|
* Storage for linear binary data.
|
|
* Blocks of binary data appear often in various idioms and structures.
|
|
*/
|
|
using Blob = std::vector<unsigned char>;
|
|
|
|
} // namespace xrpl
|