LeviLamina
Loading...
Searching...
No Matches
Constraint.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace cereal { class SerializerContext; }
8namespace cereal::internal { struct ConstraintDescription; }
9// clang-format on
10
11namespace cereal {
12
14public:
15 // member variables
16 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 Constraint& operator=(Constraint const&);
23 Constraint(Constraint const&);
24 Constraint();
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 // vIndex: 0
30 virtual void doValidate(::entt::meta_any const&, ::cereal::SerializerContext&) const = 0;
31
32 // vIndex: 1
33 virtual ~Constraint() = default;
34
35 // vIndex: 2
36 virtual ::cereal::Constraint const* subConstraint(uint64) const;
37
38 // vIndex: 3
39 virtual ::cereal::internal::ConstraintDescription description() const = 0;
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45 MCNAPI ::cereal::Constraint const* $subConstraint(uint64) const;
46 // NOLINTEND
47
48public:
49 // vftables
50 // NOLINTBEGIN
51 MCNAPI static void** $vftable();
52 // NOLINTEND
53};
54
55} // namespace cereal
Definition Constraint.h:13
MCAPI::cereal::Constraint const * $subConstraint(uint64) const
static MCAPI void ** $vftable()
Definition SerializerContext.h:11
Definition Alias.h:14