LeviLamina
Loading...
Searching...
No Matches
StorageMigrationFolders.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock::StorageMigration {
6
7struct StorageMigrationFolders {
8public:
9 // member variables
10 // NOLINTBEGIN
13 // NOLINTEND
14
15#ifdef LL_PLAT_S
16public:
17 // prevent constructor by default
18 StorageMigrationFolders& operator=(StorageMigrationFolders const&);
19 StorageMigrationFolders(StorageMigrationFolders const&);
20 StorageMigrationFolders();
21
22#else // LL_PLAT_C
23public:
24 // prevent constructor by default
25 StorageMigrationFolders& operator=(StorageMigrationFolders const&);
26 StorageMigrationFolders();
27
28#endif
29public:
30 // member functions
31 // NOLINTBEGIN
32#ifdef LL_PLAT_C
33 MCNAPI StorageMigrationFolders(::Bedrock::StorageMigration::StorageMigrationFolders 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 StorageMigrationFolders.h:7
Definition Alias.h:14