mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-05 00:59:14 -04:00
4df8ccc871
* Reorganize files into libs/{dolphin,JSystem,PowerPC_EABI_Support,revolution,TRK_MINNOW_DOLPHIN}
* Update configure.py and project.py for new libs structure
* Refactor `#include <dolphin/x.h>` -> `<x.h>`
* Remove `__REVOLUTION_SDK__` forwards from dolphin
* Fix dolphin/ references in revolution
* Wrap `#include <dolphin.h>` in `!__REVOLUTION_SDK__`
* Always build TRK against dolphin headers
* Resolve revolution SDK header resolution issues
25 lines
370 B
C++
25 lines
370 B
C++
#ifndef JKRDISPOSER_H
|
|
#define JKRDISPOSER_H
|
|
|
|
#include "JSystem/JSupport/JSUList.h"
|
|
|
|
class JKRHeap;
|
|
|
|
/**
|
|
* @ingroup jsystem-jkernel
|
|
*
|
|
*/
|
|
class JKRDisposer {
|
|
public:
|
|
JKRDisposer();
|
|
virtual ~JKRDisposer();
|
|
|
|
public:
|
|
/* 0x00 */ // vtable
|
|
/* 0x04 */ JKRHeap* mHeap;
|
|
/* 0x08 */ JSULink<JKRDisposer> mLink;
|
|
/* 0x18 */
|
|
};
|
|
|
|
#endif /* JKRDISPOSER_H */
|