|
Rebel Fork Framework
|
Reference count structure. More...
#include <Urho3D/Container/RefCounted.h>
Public Member Functions | |
| ~RefCount () | |
| Destruct. | |
Static Public Member Functions | |
| static RefCount * | Allocate () |
| Allocate RefCount using it's default allocator. | |
| static void | Free (RefCount *instance) |
| Free RefCount using it's default allocator. | |
Public Attributes | |
| int | refs_ = 0 |
| Reference count. If below zero, the object has been destroyed. | |
| int | weakRefs_ = 0 |
| Weak reference count. | |
Protected Types | |
| using | Allocator = EASTLAllocatorType |
Protected Member Functions | |
| RefCount ()=default | |
| Construct. | |
Reference count structure.