LeviLamina
Loading...
Searching...
No Matches
VolumeCreationDataComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class VolumeCreationDataComponent {
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<8, 32, ::std::string> mJsonIdentifier;
10 ::ll::TypedStorage<8, 32, ::std::string> mInstanceName;
11 // NOLINTEND
12
13#ifdef LL_PLAT_S
14#else // LL_PLAT_C
15public:
16 // prevent constructor by default
17 VolumeCreationDataComponent& operator=(VolumeCreationDataComponent const&);
18 VolumeCreationDataComponent(VolumeCreationDataComponent const&);
19 VolumeCreationDataComponent();
20
21#endif
22public:
23 // member functions
24 // NOLINTBEGIN
25#ifdef LL_PLAT_C
26 MCNAPI ::VolumeCreationDataComponent& operator=(::VolumeCreationDataComponent&&);
27#endif
28 // NOLINTEND
29};