- removed NoVirtualRefCountedBase class

This commit is contained in:
alexey.lysiuk 2021-10-18 10:26:21 +03:00
parent 94b77de5ed
commit e0cdb1e32e
1 changed files with 1 additions and 10 deletions

View File

@ -2,16 +2,7 @@
// Simple lightweight reference counting pointer alternative for std::shared_ptr which stores the reference counter in the handled object itself.
// Base classes for handled objects
class NoVirtualRefCountedBase
{
public:
void IncRef() { refCount++; }
void DecRef() { if (--refCount <= 0) delete this; }
private:
int refCount = 0;
};
// Base class for handled objects
class RefCountedBase
{
public: