LeviLamina
Loading...
Searching...
No Matches
Blob.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cereal {
6
7struct Blob {
8public:
9 // Blob inner types define
10 using StorageType = ::std::unique_ptr<uchar[0]>;
11
12 using ValueType = uchar;
13
14 using ViewType = ::gsl::span<uchar const>;
15
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 16, ::gsl::span<uchar const>> mView;
20 ::ll::TypedStorage<8, 8, ::std::unique_ptr<uchar[0]>> mData;
21 // NOLINTEND
22};
23
24} // namespace cereal
Definition Blob.h:7