LeviLamina
Loading...
Searching...
No Matches
Constraint.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/cereal/ContextArea.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 cereal {
15
16class Constraint {
17public:
18 // member variables
19 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 Constraint& operator=(Constraint const&);
27 Constraint(Constraint const&);
28 Constraint();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual void doValidate(::entt::meta_any const&, ::cereal::SerializerContext&) const = 0;
34
35 virtual ::cereal::internal::ConstraintDescription doDescription(::cereal::ContextArea) const = 0;
36
37 virtual ~Constraint() = default;
38
39 virtual ::cereal::Constraint const* subConstraint(uint64) const;
40
41 virtual ::entt::type_info const& info() const = 0;
42 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47 MCNAPI ::cereal::Constraint const* $subConstraint(uint64) const;
48
49
50 // NOLINTEND
51
52public:
53 // vftables
54 // NOLINTBEGIN
55 MCNAPI static void** $vftable();
56 // NOLINTEND
57};
58
59} // namespace cereal
MCAPI::cereal::Constraint const * $subConstraint(uint64) const
static MCAPI void ** $vftable()
Definition SerializerContext.h:11
Definition ConstraintDescription.h:7
Definition Alias.h:14