LeviLamina
Loading...
Searching...
No Matches
Release.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/binding_type/Comparison.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Scripting { class MajorVersionLimit; }
11namespace Scripting { struct Version; }
12// clang-format on
13
14namespace Scripting {
15
16class Release {
17public:
18 // member variables
19 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 Release& operator=(Release const&);
28 Release(Release const&);
29 Release();
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCAPI Release(
35 ::Scripting::Comparison comparison_,
36 ::Scripting::Version version_,
37 ::std::optional<::Scripting::MajorVersionLimit> exclusiveMajorVersionLimit_
38 );
39
40 MCAPI ~Release();
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCAPI void* $ctor(
47 ::Scripting::Comparison comparison_,
48 ::Scripting::Version version_,
49 ::std::optional<::Scripting::MajorVersionLimit> exclusiveMajorVersionLimit_
50 );
51 // NOLINTEND
52
53public:
54 // destructor thunk
55 // NOLINTBEGIN
56 MCFOLD void $dtor();
57 // NOLINTEND
58};
59
60} // namespace Scripting
Definition Release.h:16
Definition Version.h:7
Definition Alias.h:14