LeviLamina
Loading...
Searching...
No Matches
ConstantFactory.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/binding_type/TaggedBinding.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Scripting { class WeakLifetimeScope; }
11// clang-format on
12
13namespace Scripting {
14
15struct ConstantFactory : public ::Scripting::TaggedBinding {
16public:
17 // member variables
18 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 ConstantFactory& operator=(ConstantFactory const&);
28 ConstantFactory();
29
30public:
31 // member functions
32 // NOLINTBEGIN
34
36 ::std::string name_,
37 ::entt::meta_type type_,
38 bool primitive_,
39 ::std::function<::entt::meta_any(::Scripting::WeakLifetimeScope&)> func_
40 );
41
43 // NOLINTEND
44
45public:
46 // constructor thunks
47 // NOLINTBEGIN
48 MCNAPI void* $ctor(::Scripting::ConstantFactory const&);
49
50 MCNAPI void* $ctor(
51 ::std::string name_,
52 ::entt::meta_type type_,
53 bool primitive_,
54 ::std::function<::entt::meta_any(::Scripting::WeakLifetimeScope&)> func_
55 );
56 // NOLINTEND
57
58public:
59 // destructor thunk
60 // NOLINTBEGIN
61 MCNAPI void $dtor();
62 // NOLINTEND
63};
64
65} // namespace Scripting
Definition WeakLifetimeScope.h:14
Definition ConstantFactory.h:15
MCAPI void * $ctor(::Scripting::ConstantFactory const &)
MCAPI ConstantFactory(::Scripting::ConstantFactory const &)
MCAPI ConstantFactory(::std::string name_, ::entt::meta_type type_, bool primitive_, ::std::function<::entt::meta_any(::Scripting::WeakLifetimeScope &)> func_)
MCAPI void * $ctor(::std::string name_, ::entt::meta_type type_, bool primitive_, ::std::function<::entt::meta_any(::Scripting::WeakLifetimeScope &)> func_)
Definition TaggedBinding.h:13
Definition Alias.h:14