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
16public:
17 // member variables
18 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 ConstantFactory& operator=(ConstantFactory const&);
30
31public:
32 // member functions
33 // NOLINTBEGIN
35
36 MCAPI ConstantFactory(
37 ::std::string name_,
38 ::entt::meta_type type_,
39 bool primitive_,
40 ::std::function<::entt::meta_any(::Scripting::WeakLifetimeScope&)> func_
41 );
42
43 MCAPI ~ConstantFactory();
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCAPI void* $ctor(::Scripting::ConstantFactory&&);
50
51 MCAPI void* $ctor(
52 ::std::string name_,
53 ::entt::meta_type type_,
54 bool primitive_,
55 ::std::function<::entt::meta_any(::Scripting::WeakLifetimeScope&)> func_
56 );
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62 MCAPI void $dtor();
63 // NOLINTEND
64};
65
66} // namespace Scripting
Definition WeakLifetimeScope.h:12
Definition ConstantFactory.h:15
Definition TaggedBinding.h:13
Definition Alias.h:14