LeviLamina
Loading...
Searching...
No Matches
INIProperty.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cereal {
6
8public:
9 // INIProperty inner types define
10 enum class PropertyType : int {
11 Unknown = 0,
12 Int = 1,
13 Float = 2,
14 Bool = 3,
15 String = 4,
16 Invalid = 5,
17 };
18
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<4, 4, ::cereal::INIProperty::PropertyType> mType;
23 ::ll::TypedStorage<8, 32, ::std::string> name;
24 ::ll::TypedStorage<8, 32, ::std::string> value;
25 // NOLINTEND
26};
27
28} // namespace cereal
Definition INIProperty.h:7