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
50 MCNAPI static ::std::string_view const& PRE_RELEASE_TAG_INTERNAL();
51 // NOLINTEND
52
53public:
54 // constructor thunks
55 // NOLINTBEGIN
56 MCNAPI void* $ctor(
57 ::Scripting::Comparison comparison_,
58 ::Scripting::Version version_,
59 ::std::optional<::Scripting::RemovedInMajorVersion> exclusiveMajorVersionLimit_
60 );
61 // NOLINTEND
62
63public:
64 // destructor thunk
65 // NOLINTBEGIN
66 MCNAPI void $dtor();
67 // NOLINTEND
68};
69
70} // namespace Scripting
static MCAPI ::std::string_view const & PRE_RELEASE_TAG_ALPHA()
static MCAPI ::std::string_view const & PRE_RELEASE_TAG_INTERNAL()
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 RemovedInMajorVersion.h:7
Definition Version.h:7
Definition Alias.h:14