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 // member variables
13 // NOLINTBEGIN
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 IPropertyGetter& operator=(IPropertyGetter const&);
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 // vIndex: 0
27 virtual ~IPropertyGetter() = default;
28
29 // vIndex: 1
30 virtual ::entt::meta_any get(::entt::meta_handle) = 0;
31
32 // vIndex: 2
33 virtual ::entt::meta_type type() const = 0;
34
35 // vIndex: 3
36 virtual ::std::optional<::entt::meta_type> ownerType() const = 0;
37
38 // vIndex: 4
39 virtual ::Scripting::Reflection::ReturnPolicy getReturnPolicy() const = 0;
40
41 // vIndex: 5
42 virtual bool isReferenceType() const = 0;
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCNAPI static void** $vftable();
55 // NOLINTEND
56};
57
58} // namespace Scripting::Reflection
Definition IPropertyGetter.h:10
Definition Alias.h:14