LeviLamina
Loading...
Searching...
No Matches
StorageMigrationInputs.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock::StorageMigration {
6
7struct StorageMigrationInputs {
8public:
9 // member variables
10 // NOLINTBEGIN
15 // NOLINTEND
16
17#ifdef LL_PLAT_S
18public:
19 // prevent constructor by default
20 StorageMigrationInputs& operator=(StorageMigrationInputs const&);
21 StorageMigrationInputs(StorageMigrationInputs const&);
22 StorageMigrationInputs();
23
24#else // LL_PLAT_C
25public:
26 // prevent constructor by default
27 StorageMigrationInputs& operator=(StorageMigrationInputs const&);
28 StorageMigrationInputs();
29
30#endif
31public:
32 // member functions
33 // NOLINTBEGIN
34#ifdef LL_PLAT_C
35 MCNAPI StorageMigrationInputs(::Bedrock::StorageMigration::StorageMigrationInputs const&);
36
37 MCNAPI ~StorageMigrationInputs();
38#endif
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44#ifdef LL_PLAT_C
46#endif
47 // NOLINTEND
48
49public:
50 // destructor thunk
51 // NOLINTBEGIN
52#ifdef LL_PLAT_C
53 MCNAPI void $dtor();
54#endif
55 // NOLINTEND
56};
57
58} // namespace Bedrock::StorageMigration
Definition StorageMigrationInputs.h:7
Definition Alias.h:14