mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
20 lines
286 B
C++
20 lines
286 B
C++
#ifndef __JKRDISPOSER_H__
|
|
#define __JKRDISPOSER_H__
|
|
|
|
#include "dolphin/types.h"
|
|
#include "JSystem/JSupport/JSUList.h"
|
|
|
|
class JKRHeap;
|
|
class JKRDisposer {
|
|
public:
|
|
JKRDisposer();
|
|
~JKRDisposer();
|
|
|
|
public:
|
|
void** __vt;
|
|
JKRHeap* heap;
|
|
JSUPtrLink ptr_link;
|
|
};
|
|
|
|
#endif
|