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
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 INIProperty& operator=(INIProperty const&);
32};
33
34} // namespace cereal
Definition INIProperty.h:7
Definition Alias.h:14