LeviLamina
Loading...
Searching...
No Matches
PropertyOutOfBoundsError.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 { struct ErrorBinding; }
11// clang-format on
12
13namespace Scripting {
14
15struct PropertyOutOfBoundsError : public ::Scripting::BaseError {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, double> value;
20 ::ll::TypedStorage<8, 16, ::std::optional<double>> minValue;
21 ::ll::TypedStorage<8, 16, ::std::optional<double>> maxValue;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 PropertyOutOfBoundsError& operator=(PropertyOutOfBoundsError const&);
27 PropertyOutOfBoundsError();
28
29public:
30 // member functions
31 // NOLINTBEGIN
32 MCAPI PropertyOutOfBoundsError(::Scripting::PropertyOutOfBoundsError&&);
33
34 MCAPI PropertyOutOfBoundsError(::Scripting::PropertyOutOfBoundsError const&);
35
36 MCAPI PropertyOutOfBoundsError(
37 ::std::string const& propertyName,
38 ::std::optional<double> minValue_,
39 ::std::optional<double> maxValue_
40 );
41
42 MCAPI PropertyOutOfBoundsError(
43 ::std::string const& propertyName,
44 double value_,
45 ::std::optional<double> minValue_,
46 ::std::optional<double> maxValue_
47 );
48
49 MCAPI ::Scripting::PropertyOutOfBoundsError& operator=(::Scripting::PropertyOutOfBoundsError&&);
50
51 MCAPI ~PropertyOutOfBoundsError();
52 // NOLINTEND
53
54public:
55 // static functions
56 // NOLINTBEGIN
57 MCAPI static ::Scripting::ErrorBinding bind();
58 // NOLINTEND
59
60public:
61 // constructor thunks
62 // NOLINTBEGIN
63 MCAPI void* $ctor(::Scripting::PropertyOutOfBoundsError&&);
64
65 MCAPI void* $ctor(::Scripting::PropertyOutOfBoundsError const&);
66
67 MCAPI void*
68 $ctor(::std::string const& propertyName, ::std::optional<double> minValue_, ::std::optional<double> maxValue_);
69
70 MCAPI void* $ctor(
71 ::std::string const& propertyName,
72 double value_,
73 ::std::optional<double> minValue_,
74 ::std::optional<double> maxValue_
75 );
76 // NOLINTEND
77
78public:
79 // destructor thunk
80 // NOLINTBEGIN
81 MCFOLD void $dtor();
82 // NOLINTEND
83};
84
85} // namespace Scripting
Definition BaseError.h:12
Definition ErrorBinding.h:15
Definition PropertyOutOfBoundsError.h:15