LeviLamina
Loading...
Searching...
No Matches
INIProperty.h
1
#pragma once
2
3
#include "mc/_HeaderOutputPredefine.h"
4
5
namespace
cereal {
6
7
class
INIProperty
{
8
public
:
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
19
public
:
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
cereal::INIProperty
Definition
INIProperty.h:7
src
mc
deps
cereal
INIProperty.h
Generated on
for LeviLamina by
1.16.1