A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
Disposer.hh
1#pragma once
2
3#include <abstract/memory/List.hh>
4
5namespace EGG {
6
7class Heap;
8
11class Disposer {
12 friend class Heap;
13
14public:
15 [[nodiscard]] static constexpr u16 getLinkOffset() {
16 return reinterpret_cast<uintptr_t>(&reinterpret_cast<Disposer *>(NULL)->m_link);
17 }
18
19protected:
20 Disposer();
21 virtual ~Disposer();
22
23private:
24 Heap *m_heap;
26};
27
28} // namespace EGG
An interface for ensuring certain structures and classes are destroyed with the heap.
Definition Disposer.hh:11
A high-level representation of a memory heap for managing dynamic memory allocation....
Definition Heap.hh:16
EGG core library.
Definition Archive.cc:6