LeviLamina
Loading...
Searching...
No Matches
ConstraintDescription.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cereal::internal {
6
7struct ConstraintDescription {
8public:
9 // member variables
10 // NOLINTBEGIN
31 // NOLINTEND
32
33public:
34 // prevent constructor by default
35 ConstraintDescription();
36
37public:
38 // member functions
39 // NOLINTBEGIN
41
43
45
46 MCNAPI explicit operator bool() const;
47
48 MCNAPI ::cereal::internal::ConstraintDescription& operator=(::cereal::internal::ConstraintDescription&&);
49
50 MCNAPI ::cereal::internal::ConstraintDescription& operator=(::cereal::internal::ConstraintDescription const&);
51
53 // NOLINTEND
54
55public:
56 // constructor thunks
57 // NOLINTBEGIN
59
61 // NOLINTEND
62
63public:
64 // destructor thunk
65 // NOLINTBEGIN
66 MCNAPI void $dtor();
67 // NOLINTEND
68};
69
70} // namespace cereal::internal
Definition ConstraintDescription.h:7
MCAPI ConstraintDescription(::cereal::internal::ConstraintDescription const &)
MCAPI void * $ctor(::cereal::internal::ConstraintDescription const &)
MCAPI::cereal::internal::ConstraintDescription & operator=(::cereal::internal::ConstraintDescription const &)
MCAPI void * $ctor(::cereal::internal::ConstraintDescription &&)
MCAPI::cereal::internal::ConstraintDescription & operator=(::cereal::internal::ConstraintDescription &&)
MCAPI ConstraintDescription(::cereal::internal::ConstraintDescription &&)
MCAPI void merge(::cereal::internal::ConstraintDescription const &other)
Definition Alias.h:14