LeviLamina
Loading...
Searching...
No Matches
RuntimeConditionError.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/runtime/BaseError.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Scripting { class RuntimeConditions; }
11namespace Scripting { struct ErrorBinding; }
12// clang-format on
13
14namespace Scripting {
15
16struct RuntimeConditionError : public ::Scripting::BaseError {
17public:
18 // prevent constructor by default
19 RuntimeConditionError();
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCAPI
25 RuntimeConditionError(::Scripting::RuntimeConditions const& missingRuntimeConditions, ::std::string const& apiName);
26
27 MCAPI ~RuntimeConditionError();
28 // NOLINTEND
29
30public:
31 // static functions
32 // NOLINTBEGIN
33 MCAPI static ::Scripting::ErrorBinding bind();
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCAPI void* $ctor(::Scripting::RuntimeConditions const& missingRuntimeConditions, ::std::string const& apiName);
40 // NOLINTEND
41
42public:
43 // destructor thunk
44 // NOLINTBEGIN
45 MCFOLD void $dtor();
46 // NOLINTEND
47};
48
49} // namespace Scripting
Definition RuntimeConditions.h:12
Definition BaseError.h:12
Definition ErrorBinding.h:15