LeviLamina
Loading...
Searching...
No Matches
TypeMapBuilder.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 Release; }
11// clang-format on
12
13namespace Scripting {
14
16public:
17 // member variables
18 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 TypeMapBuilder& operator=(TypeMapBuilder const&);
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI TypeMapBuilder(
34 ::std::string const& typeMapName_,
35 ::std::string const& keyConstantName_,
36 ::entt::meta_type baseClassType_
37 );
38
39 MCAPI void mapping(
40 ::std::string const& keyName,
41 ::std::string const& className,
42 ::std::vector<::Scripting::Release> const& classReleases,
43 ::std::vector<::Scripting::Release> const& keyReleases
44 );
45
46 MCAPI ~TypeMapBuilder();
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCAPI void*
53 $ctor(::std::string const& typeMapName_, ::std::string const& keyConstantName_, ::entt::meta_type baseClassType_);
54 // NOLINTEND
55
56public:
57 // destructor thunk
58 // NOLINTBEGIN
59 MCAPI void $dtor();
60 // NOLINTEND
61};
62
63} // namespace Scripting
Definition TypeMapBuilder.h:15
Definition TaggedBinding.h:13
Definition Alias.h:14