LeviLamina
Loading...
Searching...
No Matches
SchemaRWType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cereal {
6
7enum class SchemaRWType : uchar {
8 // bitfield representation
9 Invalid = 0,
10 Object = 1 << 0,
11 Array = 1 << 1,
12 Other = 1 << 2,
13 EnttEnumAsBitmask = Object | Other,
14};
15
16}