LeviLamina
Loading...
Searching...
No Matches
ClosureAny.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/reflection/Privilege.h"
7#include "mc/deps/scripting/script_engine/ScriptValue.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace Scripting { class ResultAny; }
12// clang-format on
13
14namespace Scripting {
15
16class ClosureAny : public ::Scripting::ScriptValue {
17public:
18 // member variables
19 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 ClosureAny& operator=(ClosureAny const&);
27 ClosureAny();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ~ClosureAny() /*override*/;
33 // NOLINTEND
34
35public:
36 // member functions
37 // NOLINTBEGIN
39
40 MCNAPI ::Scripting::ResultAny _callGeneric(
41 ::entt::meta_any* args,
42 uint argc,
43 ::entt::meta_type const& expectedReturnType,
44 ::std::optional<::Scripting::Privilege> privilege
45 ) const;
46
47 MCNAPI bool compareTo(::Scripting::ClosureAny const& rhs) const;
48
49 MCNAPI ::Scripting::ClosureAny& operator=(::Scripting::ClosureAny&& rhs);
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
55 MCNAPI void* $ctor(::Scripting::ClosureAny const& rhs);
56 // NOLINTEND
57
58public:
59 // destructor thunk
60 // NOLINTBEGIN
61 MCNAPI void $dtor();
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCNAPI static void** $vftable();
68 // NOLINTEND
69};
70
71} // namespace Scripting
Definition ClosureAny.h:16
MCAPI ClosureAny(::Scripting::ClosureAny const &rhs)
static MCAPI void ** $vftable()
MCAPI void * $ctor(::Scripting::ClosureAny const &rhs)
MCAPI::Scripting::ResultAny _callGeneric(::entt::meta_any *args, uint argc, ::entt::meta_type const &expectedReturnType, ::std::optional<::Scripting::Privilege > privilege) const
MCAPI::Scripting::ClosureAny & operator=(::Scripting::ClosureAny &&rhs)
MCAPI bool compareTo(::Scripting::ClosureAny const &rhs) const
Definition ResultAny.h:7
Definition ScriptValue.h:7
Definition Alias.h:14