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 // member functions
19 // NOLINTBEGIN
20 MCAPI ~Storage();
21 // NOLINTEND
22
23public:
24 // destructor thunk
25 // NOLINTBEGIN
26 MCAPI void $dtor();
27 // NOLINTEND
28};
29
30} // namespace OperationNodeDetails
Definition Storage.h:7