LeviLamina
Loading...
Searching...
No Matches
StorageBuffer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace texd {
6
8public:
9 // StorageBuffer inner types declare
10 // clang-format off
11 class Implementation;
12 // clang-format on
13
14 // StorageBuffer inner types define
16 public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::std::unique_ptr<uchar[0]>> mData;
20 ::ll::TypedStorage<8, 8, uint64> mSize;
21 // NOLINTEND
22 };
23
24public:
25 // member variables
26 // NOLINTBEGIN
27 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::texd::StorageBuffer::Implementation>> mImplementation;
28 // NOLINTEND
29
30public:
31 // member functions
32 // NOLINTBEGIN
33
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCAPI_C void* $ctor(uchar const* data, uint64 size);
40 // NOLINTEND
41
42public:
43 // destructor thunk
44 // NOLINTBEGIN
45 MCFOLD_C void $dtor();
46 // NOLINTEND
47};
48
49} // namespace texd
Definition StorageBuffer.h:15
Definition StorageBuffer.h:7