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
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
28
29public:
30 // member functions
31 // NOLINTBEGIN
33
35
37 ::std::string const& propertyName,
38 ::std::optional<double> minValue_,
39 ::std::optional<double> maxValue_
40 );
41
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
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 const&);
64
65 MCAPI void* $ctor(::Scripting::PropertyOutOfBoundsError&&);
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 PropertyOutOfBoundsError.h:15