LeviLamina
Loading...
Searching...
No Matches
IPropertySetter.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Scripting { class ResultAny; }
8// clang-format on
9
10namespace Scripting::Reflection {
11
12class IPropertySetter {
13public:
14 // member variables
15 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 IPropertySetter& operator=(IPropertySetter const&);
23 IPropertySetter(IPropertySetter const&);
24 IPropertySetter();
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 virtual ~IPropertySetter() = default;
30
31 virtual ::Scripting::ResultAny set(::entt::meta_handle, ::entt::meta_any) = 0;
32
33 virtual ::entt::meta_type type() const = 0;
34
35 virtual ::std::optional<::entt::meta_type> ownerType() const = 0;
36
37 virtual bool isMemberFunction() const;
38 // NOLINTEND
39
40public:
41 // virtual function thunks
42 // NOLINTBEGIN
43 MCNAPI bool $isMemberFunction() const;
44
45
46 // NOLINTEND
47
48public:
49 // vftables
50 // NOLINTBEGIN
51 MCNAPI static void** $vftable();
52 // NOLINTEND
53};
54
55} // namespace Scripting::Reflection
Definition ResultAny.h:7
Definition Alias.h:14