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 RemovedInMajorVersion; }
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 MCNAPI Release(
35 ::Scripting::Comparison comparison_,
36 ::Scripting::Version version_,
37 ::std::optional<::Scripting::RemovedInMajorVersion> exclusiveMajorVersionLimit_
38 );
39
40 MCNAPI ~Release();
41 // NOLINTEND
42
43public:
44 // static variables
45 // NOLINTBEGIN
46 MCNAPI static ::std::string_view const& PRE_RELEASE_TAG_ALPHA();
47
48 MCNAPI static ::std::string_view const& PRE_RELEASE_TAG_BETA();
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCNAPI void* $ctor(
55 ::Scripting::Comparison comparison_,
56 ::Scripting::Version version_,
57 ::std::optional<::Scripting::RemovedInMajorVersion> exclusiveMajorVersionLimit_
58 );
59 // NOLINTEND
60
61public:
62 // destructor thunk
63 // NOLINTBEGIN
64 MCNAPI void $dtor();
65 // NOLINTEND
66};
67
68} // namespace Scripting
Definition Release.h:16
static MCAPI ::std::string_view const & PRE_RELEASE_TAG_ALPHA()
MCAPI void $dtor()
static MCAPI ::std::string_view const & PRE_RELEASE_TAG_BETA()
MCAPI void * $ctor(::Scripting::Comparison comparison_, ::Scripting::Version version_, ::std::optional<::Scripting::RemovedInMajorVersion > exclusiveMajorVersionLimit_)
MCAPI Release(::Scripting::Comparison comparison_, ::Scripting::Version version_, ::std::optional<::Scripting::RemovedInMajorVersion > exclusiveMajorVersionLimit_)
Definition Version.h:7
Definition Alias.h:14