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