LeviLamina
Loading...
Searching...
No Matches
ExternalDataSwapper.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
8// clang-format on
9
10namespace RewindSimulation {
11
12class ExternalDataSwapper {
13public:
14 // member variables
15 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 ExternalDataSwapper& operator=(ExternalDataSwapper const&);
25 ExternalDataSwapper(ExternalDataSwapper const&);
26 ExternalDataSwapper();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31#ifdef LL_PLAT_C
32 MCNAPI explicit ExternalDataSwapper(::EntityRegistry& registry);
33
34 MCNAPI ~ExternalDataSwapper();
35#endif
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41#ifdef LL_PLAT_C
42 MCNAPI void* $ctor(::EntityRegistry& registry);
43#endif
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49#ifdef LL_PLAT_C
50 MCNAPI void $dtor();
51#endif
52 // NOLINTEND
53};
54
55} // namespace RewindSimulation
Definition EntityRegistry.h:10
Definition Alias.h:14