LeviLamina
Loading...
Searching...
No Matches
SlotData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct SlotData {
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<8, 32, ::std::string> mCollectionName;
10 ::ll::TypedStorage<4, 4, int> mCollectionIndex;
11 // NOLINTEND
12
13#ifdef LL_PLAT_S
14#else // LL_PLAT_C
15public:
16 // prevent constructor by default
17 SlotData(SlotData const&);
18 SlotData();
19
20#endif
21public:
22 // member functions
23 // NOLINTBEGIN
24#ifdef LL_PLAT_C
25 MCAPI bool matches(::SlotData const& other) const;
26
27 MCAPI bool operator!=(::SlotData const& other) const;
28
29 MCFOLD ::SlotData& operator=(::SlotData&&);
30
31 MCFOLD ::SlotData& operator=(::SlotData const&);
32
33 MCAPI void set(::std::string const& collectionName, int collectionIndex);
34#endif
35
36 MCAPI ~SlotData();
37 // NOLINTEND
38
39public:
40 // static variables
41 // NOLINTBEGIN
42 MCAPI static ::SlotData& UNKNOWN_LOCATION();
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48 MCFOLD void $dtor();
49 // NOLINTEND
50};