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
13public:
14 // member variables
15 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 IPropertySetter& operator=(IPropertySetter const&);
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 // vIndex: 0
30 virtual ~IPropertySetter() = default;
31
32 // vIndex: 1
33 virtual ::Scripting::ResultAny set(::entt::meta_handle, ::entt::meta_any) = 0;
34
35 // vIndex: 2
36 virtual ::entt::meta_type type() const = 0;
37
38 // vIndex: 3
39 virtual ::std::optional<::entt::meta_type> ownerType() const = 0;
40
41 // vIndex: 4
42 virtual bool isMemberFunction() const;
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54 MCFOLD bool $isMemberFunction() const;
55 // NOLINTEND
56
57public:
58 // vftables
59 // NOLINTBEGIN
60 MCAPI static void** $vftable();
61 // NOLINTEND
62};
63
64} // namespace Scripting::Reflection
Definition IPropertySetter.h:12
Definition Alias.h:14