LeviLamina
Loading...
Searching...
No Matches
SemVersionConstraint.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/cereal/ConstraintHandle.h"
7#include "mc/deps/cereal/ContextArea.h"
8#include "mc/deps/core/sem_ver/SemVersion.h"
9
10// auto generated forward declare list
11// clang-format off
12namespace cereal { class SerializerContext; }
13namespace cereal::internal { struct ConstraintDescription; }
14// clang-format on
15
16namespace SharedTypes {
17
18class SemVersionConstraint : public ::cereal::ConstraintHandle<::SharedTypes::SemVersionConstraint> {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 32, ::std::optional<::SemVersion>> mMin;
23 ::ll::TypedStorage<8, 32, ::std::optional<::SemVersion>> mMax;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 SemVersionConstraint& operator=(SemVersionConstraint const&);
29 SemVersionConstraint(SemVersionConstraint const&);
30 SemVersionConstraint();
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 virtual ~SemVersionConstraint() /*override*/;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCAPI SemVersionConstraint(::SharedTypes::SemVersionConstraint&&);
42
43 MCAPI ::cereal::internal::ConstraintDescription description(::cereal::ContextArea req) const;
44
45 MCAPI void validateValue(::SemVersion const& vers, ::cereal::SerializerContext& context) const;
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCAPI void* $ctor(::SharedTypes::SemVersionConstraint&&);
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57 MCAPI void $dtor();
58 // NOLINTEND
59
60public:
61 // vftables
62 // NOLINTBEGIN
63 MCNAPI static void** $vftable();
64 // NOLINTEND
65};
66
67} // namespace SharedTypes
Definition SemVersion.h:15
Definition SemVersionConstraint.h:18
static MCAPI void ** $vftable()
Definition ConstraintHandle.h:8
Definition SerializerContext.h:11
Definition ConstraintDescription.h:7
Definition context.h:5