LeviLamina
Loading...
Searching...
No Matches
PropertyValues.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct PropertyValues {
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<8, 24, ::std::vector<int>> mIntValues;
10 ::ll::TypedStorage<8, 24, ::std::vector<float>> mFloatValues;
11 ::ll::TypedStorage<8, 32, ::std::vector<bool>> mBoolValues;
12 ::ll::TypedStorage<8, 24, ::std::vector<uint64>> mEnumIndexValues;
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 PropertyValues& operator=(PropertyValues const&);
18 PropertyValues(PropertyValues const&);
19 PropertyValues();
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCAPI ::PropertyValues& operator=(::PropertyValues&&);
25
26 MCAPI void resize(uint64 numInts, uint64 numFloats, uint64 numBools, uint64 numEnums);
27
28 MCAPI ~PropertyValues();
29 // NOLINTEND
30
31public:
32 // destructor thunk
33 // NOLINTBEGIN
34 MCAPI void $dtor();
35 // NOLINTEND
36};