LeviLamina
Loading...
Searching...
No Matches
VectorComparativeConstraint.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/cereal/Constraint.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace cereal { class SerializerContext; }
11namespace cereal::internal { struct ConstraintDescription; }
12// clang-format on
13
14namespace SharedTypes {
15
17public:
18 // VectorComparativeConstraint inner types define
19 enum class ComparisonRequirement : int {
20 NotEqual = 0,
21 LessThan = 1,
22 GreaterThan = 2,
23 };
24
25public:
26 // member variables
27 // NOLINTBEGIN
29 // NOLINTEND
30
31public:
32 // prevent constructor by default
36
37public:
38 // virtual functions
39 // NOLINTBEGIN
40 // vIndex: 3
41 virtual ::cereal::internal::ConstraintDescription description() const /*override*/;
42
43 // vIndex: 1
44 virtual void doValidate(::entt::meta_any const& any, ::cereal::SerializerContext& context) const /*override*/;
45
46 // vIndex: 2
47 virtual ~VectorComparativeConstraint() /*override*/ = default;
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53 MCNAPI ::cereal::internal::ConstraintDescription $description() const;
54
55 MCNAPI void $doValidate(::entt::meta_any const& any, ::cereal::SerializerContext& context) const;
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCNAPI static void** $vftable();
62 // NOLINTEND
63};
64
65} // namespace SharedTypes
Definition VectorComparativeConstraint.h:16
MCAPI::cereal::internal::ConstraintDescription $description() const
MCAPI void $doValidate(::entt::meta_any const &any, ::cereal::SerializerContext &context) const
Definition Constraint.h:13
Definition SerializerContext.h:11
Definition context.h:5
Definition Alias.h:14