LeviLamina
Loading...
Searching...
No Matches
Storage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace OperationNodeDetails {
6
7class Storage {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<8, 8, uint64> mReadableBytes;
12 ::ll::TypedStorage<8, 8, uint64> mWriteableBytes;
13 ::ll::TypedStorage<8, 8, ::std::unique_ptr<char[0]>> mReadStorage;
14 ::ll::TypedStorage<8, 8, ::std::unique_ptr<char[0]>> mWriteStorage;
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 Storage();
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCAPI explicit Storage(uint64 size);
25 // NOLINTEND
26
27public:
28 // constructor thunks
29 // NOLINTBEGIN
30 MCAPI void* $ctor(uint64 size);
31 // NOLINTEND
32};
33
34} // namespace OperationNodeDetails