LeviLamina
Loading...
Searching...
No Matches
IPropertyGetter.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/reflection/ReturnPolicy.h"
7
8namespace Scripting::Reflection {
9
11public:
12 // virtual functions
13 // NOLINTBEGIN
14 // vIndex: 0
15 virtual ~IPropertyGetter() = default;
16
17 // vIndex: 1
18 virtual ::entt::meta_any get(::entt::meta_handle) = 0;
19
20 // vIndex: 2
21 virtual ::entt::meta_type type() const = 0;
22
23 // vIndex: 3
24 virtual ::std::optional<::entt::meta_type> ownerType() const = 0;
25
26 // vIndex: 4
27 virtual ::Scripting::Reflection::ReturnPolicy getReturnPolicy() const = 0;
28
29 // vIndex: 5
30 virtual bool isReferenceType() const = 0;
31 // NOLINTEND
32
33public:
34 // destructor thunk
35 // NOLINTBEGIN
36
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42
43 // NOLINTEND
44
45public:
46 // vftables
47 // NOLINTBEGIN
48 MCAPI static void** $vftable();
49 // NOLINTEND
50};
51
52} // namespace Scripting::Reflection
Definition IPropertyGetter.h:10