LeviLamina
Loading...
Searching...
No Matches
StorageMigrationFiles.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock::StorageMigration {
6
7struct StorageMigrationFiles {
8public:
9 // member variables
10 // NOLINTBEGIN
13 // NOLINTEND
14
15#ifdef LL_PLAT_S
16public:
17 // prevent constructor by default
18 StorageMigrationFiles& operator=(StorageMigrationFiles const&);
19 StorageMigrationFiles(StorageMigrationFiles const&);
20 StorageMigrationFiles();
21
22#else // LL_PLAT_C
23public:
24 // prevent constructor by default
25 StorageMigrationFiles& operator=(StorageMigrationFiles const&);
26 StorageMigrationFiles();
27
28#endif
29public:
30 // member functions
31 // NOLINTBEGIN
32#ifdef LL_PLAT_C
33 MCNAPI StorageMigrationFiles(::Bedrock::StorageMigration::StorageMigrationFiles const&);
34#endif
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40#ifdef LL_PLAT_C
42#endif
43 // NOLINTEND
44};
45
46} // namespace Bedrock::StorageMigration
Definition StorageMigrationFiles.h:7
Definition Alias.h:14