LeviLamina
Loading...
Searching...
No Matches
MemoryBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/bx/MemoryBlockI.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace bx { struct AllocatorI; }
11// clang-format on
12
13namespace bx {
14
15class MemoryBlock : public ::bx::MemoryBlockI {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::bx::AllocatorI*> m_allocator;
20 ::ll::TypedStorage<8, 8, void*> m_data;
21 ::ll::TypedStorage<4, 4, uint> m_size;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual ~MemoryBlock() = default;
28
29 virtual void* more(uint) /*override*/;
30
31 virtual uint getSize() /*override*/;
32 // NOLINTEND
33
34public:
35 // virtual function thunks
36 // NOLINTBEGIN
37
38 // NOLINTEND
39};
40
41} // namespace bx
Definition MemoryBlock.h:7
Definition AllocatorI.h:7