41e96dc8f0
the dejagnu test harness. From-SVN: r202373
30 lines
418 B
C++
30 lines
418 B
C++
class RefCountedBase {
|
|
protected:
|
|
bool derefBase()
|
|
{
|
|
return true;
|
|
}
|
|
};
|
|
|
|
template<typename T> class RefCounted : public RefCountedBase {
|
|
public:
|
|
void deref()
|
|
{
|
|
if (derefBase())
|
|
delete static_cast<T*>(this);
|
|
}
|
|
|
|
protected:
|
|
// RefCounted() { }
|
|
~RefCounted()
|
|
{
|
|
}
|
|
};
|
|
|
|
|
|
class Event : public RefCounted<Event> {
|
|
public:
|
|
Event();
|
|
virtual ~Event();
|
|
};
|