mirror of https://github.com/PrimeDecomp/prime.git
33 lines
692 B
C++
33 lines
692 B
C++
#ifndef _TONESTATIC_HPP
|
|
#define _TONESTATIC_HPP
|
|
|
|
#include "types.h"
|
|
|
|
template < typename T >
|
|
class TOneStatic {
|
|
public:
|
|
void* operator new(unsigned long sz, const char*, const char*); /* {
|
|
ReferenceCount()++;
|
|
return GetAllocSpace();
|
|
}*/
|
|
void* operator new(unsigned long sz) { return operator new(sz, "??(??)", nullptr); }
|
|
void operator delete(void* ptr);
|
|
|
|
private:
|
|
static void* GetAllocSpace() {
|
|
static u8 sAllocSpace[sizeof(T)];
|
|
return &sAllocSpace;
|
|
}
|
|
static uint& ReferenceCount() {
|
|
static uint sReferenceCount = 0;
|
|
return sReferenceCount;
|
|
}
|
|
};
|
|
|
|
template < typename T >
|
|
void TOneStatic< T >::operator delete(void* ptr) {
|
|
ReferenceCount()--;
|
|
}
|
|
|
|
#endif
|