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/Error.h"
7
8namespace Scripting {
9
11public:
12 // member variables
13 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
23
24public:
25 // member functions
26 // NOLINTBEGIN
28
30
31 MCAPI
32 PropertyOutOfBoundsError(::std::string const& propertyName, double value_, double minValue_, double maxValue_);
33
34 MCFOLD ::Scripting::PropertyOutOfBoundsError& operator=(::Scripting::PropertyOutOfBoundsError&&);
35
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCFOLD void* $ctor(::Scripting::PropertyOutOfBoundsError const&);
43
44 MCFOLD void* $ctor(::Scripting::PropertyOutOfBoundsError&&);
45
46 MCAPI void* $ctor(::std::string const& propertyName, double value_, double minValue_, double maxValue_);
47 // NOLINTEND
48
49public:
50 // destructor thunk
51 // NOLINTBEGIN
52 MCFOLD void $dtor();
53 // NOLINTEND
54};
55
56} // namespace Scripting
Definition Error.h:7
Definition PropertyOutOfBoundsError.h:10
Definition Alias.h:14