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