LeviLamina
Loading...
Searching...
No Matches
DescriptionExtra.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cereal::internal {
6
7enum class DescriptionExtra : uchar {
8 // bitfield representation
9 None = 0,
10 UnderlyingType = 1 << 0,
11 ControlValueType = 1 << 1,
12 SerializationTraits = 1 << 2,
13 OrdinalIndex = 1 << 3,
14 NumericLimits = 1 << 4,
15 NonPublicFlag = 1 << 5,
16 NetworkingExtraInfo = UnderlyingType | ControlValueType | SerializationTraits | OrdinalIndex,
17 EnttEnumAsBitmask = 255,
18};
19
20}