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
59 // NOLINTEND
60
61public:
62 // prevent constructor by default
63 ResolvedTypes& operator=(ResolvedTypes const&);
65
66public:
67 // member functions
68 // NOLINTBEGIN
69 MCNAPI ResolvedTypes();
70
71 MCNAPI bool isHandleType(::entt::meta_type const& type) const;
72
73 MCNAPI bool isNumericType(::entt::meta_type const& type) const;
74
76 // NOLINTEND
77
78public:
79 // constructor thunks
80 // NOLINTBEGIN
81 MCNAPI void* $ctor();
82 // NOLINTEND
83
84public:
85 // destructor thunk
86 // NOLINTBEGIN
87 MCNAPI void $dtor();
88 // NOLINTEND
89};
90
91} // 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