mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- added RefCountedBase without virtual destructor
This commit is contained in:
parent
bbcd522052
commit
76ecf44549
1 changed files with 17 additions and 8 deletions
|
@ -2,7 +2,16 @@
|
|||
|
||||
// Simple lightweight reference counting pointer alternative for std::shared_ptr which stores the reference counter in the handled object itself.
|
||||
|
||||
// Base class for handled objects
|
||||
// Base classes for handled objects
|
||||
class NoVirtualRefCountedBase
|
||||
{
|
||||
public:
|
||||
void IncRef() { refCount++; }
|
||||
void DecRef() { if (--refCount <= 0) delete this; }
|
||||
private:
|
||||
int refCount = 0;
|
||||
};
|
||||
|
||||
class RefCountedBase
|
||||
{
|
||||
public:
|
||||
|
|
Loading…
Reference in a new issue