mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-14 22:31:29 +03:00
43 lines
565 B
C++
43 lines
565 B
C++
#pragma once
|
|
|
|
#include "Assertions.h"
|
|
|
|
namespace AK {
|
|
|
|
template<typename T>
|
|
class Retainable {
|
|
public:
|
|
void retain()
|
|
{
|
|
ASSERT(m_retainCount);
|
|
++m_retainCount;
|
|
}
|
|
|
|
void release()
|
|
{
|
|
ASSERT(m_retainCount);
|
|
if (!--m_retainCount)
|
|
delete static_cast<const T*>(this);
|
|
}
|
|
|
|
int retainCount() const
|
|
{
|
|
return m_retainCount;
|
|
}
|
|
|
|
protected:
|
|
Retainable() { }
|
|
~Retainable()
|
|
{
|
|
ASSERT(!m_retainCount);
|
|
}
|
|
|
|
private:
|
|
int m_retainCount { 1 };
|
|
};
|
|
|
|
}
|
|
|
|
using AK::Retainable;
|
|
|