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
60 // NOLINTEND
61
62public:
63 // prevent constructor by default
64 ResolvedTypes& operator=(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
77 // NOLINTEND
78
79public:
80 // constructor thunks
81 // NOLINTBEGIN
82 MCNAPI void* $ctor();
83 // NOLINTEND
84
85public:
86 // destructor thunk
87 // NOLINTBEGIN
88 MCNAPI void $dtor();
89 // NOLINTEND
90};
91
92} // namespace Scripting::QuickJS
Definition ResolvedTypes.h:7
MCAPI bool isNumericType(::entt::meta_type const &type) const
MCAPI bool isHandleType(::entt::meta_type const &type) const
Definition Alias.h:14