LeviLamina
Loading...
Searching...
No Matches
AllocatorI.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace bx {
6
7struct AllocatorI {
8public:
9 // virtual functions
10 // NOLINTBEGIN
11 virtual ~AllocatorI() = 0;
12
13 virtual void* realloc(void* _ptr, uint64 _size, uint64 _align, char const* _file, uint _line) = 0;
14 // NOLINTEND
15
16public:
17 // virtual function thunks
18 // NOLINTBEGIN
19
20 // NOLINTEND
21};
22
23} // namespace bx
Definition AllocatorI.h:7