mirror of
https://github.com/XRPLF/rippled.git
synced 2026-02-07 23:42:28 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
13 lines
226 B
C++
13 lines
226 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
|