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
32 // NOLINTEND
33
34public:
35 // prevent constructor by default
36 ConstraintDescription();
37
38public:
39 // member functions
40 // NOLINTBEGIN
42
44
46
47 MCNAPI explicit operator bool() const;
48
49 MCNAPI ::cereal::internal::ConstraintDescription& operator=(::cereal::internal::ConstraintDescription&&);
50
51 MCNAPI ::cereal::internal::ConstraintDescription& operator=(::cereal::internal::ConstraintDescription const&);
52
54 // NOLINTEND
55
56public:
57 // constructor thunks
58 // NOLINTBEGIN
60
62 // NOLINTEND
63
64public:
65 // destructor thunk
66 // NOLINTBEGIN
67 MCNAPI void $dtor();
68 // NOLINTEND
69};
70
71} // 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