LeviLamina
Loading...
Searching...
No Matches
ResolvedTypes.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Scripting::QuickJS {
6
8public:
9 // member variables
10 // NOLINTBEGIN
58 // NOLINTEND
59
60public:
61 // prevent constructor by default
62 ResolvedTypes& operator=(ResolvedTypes const&);
64
65public:
66 // member functions
67 // NOLINTBEGIN
68 MCAPI ResolvedTypes();
69
70 MCAPI bool isHandleType(::entt::meta_type const& type) const;
71
72 MCAPI bool isNumericType(::entt::meta_type const& type) const;
73
74 MCAPI ~ResolvedTypes();
75 // NOLINTEND
76
77public:
78 // constructor thunks
79 // NOLINTBEGIN
80 MCAPI void* $ctor();
81 // NOLINTEND
82
83public:
84 // destructor thunk
85 // NOLINTBEGIN
86 MCAPI void $dtor();
87 // NOLINTEND
88};
89
90} // namespace Scripting::QuickJS
Definition ResolvedTypes.h:7
Definition Alias.h:14