mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
30 lines
544 B
C++
30 lines
544 B
C++
#pragma once
|
|
|
|
#include "../base/datBase.hpp"
|
|
|
|
namespace rage
|
|
{
|
|
class atReferenceCounter : public datBase
|
|
{
|
|
public:
|
|
atReferenceCounter() : m_ref_count(0) {}
|
|
|
|
void AddReference() {
|
|
m_ref_count++;
|
|
}
|
|
|
|
void ReleaseReference() {
|
|
m_ref_count--;
|
|
if(m_ref_count == 0) {
|
|
delete this;
|
|
}
|
|
}
|
|
|
|
int GetReferenceCount() const {
|
|
return m_ref_count;
|
|
}
|
|
|
|
private:
|
|
int m_ref_count; // 0x0000
|
|
};
|
|
} |