LeviLamina
Loading...
Searching...
No Matches
CerealUpgraderBase.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace cereal { struct ReflectionCtx; }
8// clang-format on
9
10namespace Puv::internal {
11
12class CerealUpgraderBase {
13public:
14 // member variables
15 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 CerealUpgraderBase& operator=(CerealUpgraderBase const&);
23 CerealUpgraderBase(CerealUpgraderBase const&);
24 CerealUpgraderBase();
25
26public:
27 // member functions
28 // NOLINTBEGIN
30
31 MCNAPI void bindCallback(
32 ::std::function<void(::entt::meta_any&, ::entt::meta_any&)> cb,
33 ::std::vector<::std::string> const& source,
34 ::std::vector<::std::string> destination
35 );
36
37 MCNAPI void ignore(::std::vector<::std::string> const& source);
38
39 MCNAPI void move(::std::vector<::std::string> const& source, ::std::vector<::std::string> destination);
40
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCNAPI void* $ctor(::cereal::ReflectionCtx const& ctx);
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCNAPI void $dtor();
54 // NOLINTEND
55};
56
57} // namespace Puv::internal
MCAPI void move(::std::vector<::std::string > const &source, ::std::vector<::std::string > destination)
MCAPI void * $ctor(::cereal::ReflectionCtx const &ctx)
MCAPI CerealUpgraderBase(::cereal::ReflectionCtx const &ctx)
MCAPI void bindCallback(::std::function< void(::entt::meta_any &, ::entt::meta_any &)> cb, ::std::vector<::std::string > const &source, ::std::vector<::std::string > destination)
MCAPI void ignore(::std::vector<::std::string > const &source)
Definition ReflectionCtx.h:11
Definition ctx.h:5
Definition Alias.h:14