LeviLamina
Loading...
Searching...
No Matches
EnumValue.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace cereal { class DynamicValue; }
8// clang-format on
9
10namespace cereal::internal {
11
12struct EnumValue {
13public:
14 // EnumValue inner types define
15 using CerealProperties = ::std::map<::std::string, ::cereal::DynamicValue>;
16
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, int64> mValue;
21 ::ll::TypedStorage<8, 32, ::std::string> mName;
22 ::ll::TypedStorage<8, 40, ::std::optional<::std::string>> mDescription;
23 ::ll::TypedStorage<8, 24, ::std::optional<::std::map<::std::string, ::cereal::DynamicValue>>> mCerealProperties;
24 ::ll::TypedStorage<8, 40, ::std::optional<::std::string>> mNonPublicFlag;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 EnumValue& operator=(EnumValue const&);
30 EnumValue();
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI EnumValue(::cereal::internal::EnumValue const&);
36
37 MCAPI ~EnumValue();
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCAPI void* $ctor(::cereal::internal::EnumValue const&);
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCAPI void $dtor();
50 // NOLINTEND
51};
52
53} // namespace cereal::internal
Definition DynamicValue.h:14
Definition EnumValue.h:12