diff options
Diffstat (limited to 'source/core/smart-pointer.h')
| -rw-r--r-- | source/core/smart-pointer.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/source/core/smart-pointer.h b/source/core/smart-pointer.h index 17d6caaa4..bc1683a5b 100644 --- a/source/core/smart-pointer.h +++ b/source/core/smart-pointer.h @@ -35,6 +35,11 @@ namespace Slang referenceCount++; } + void decreaseReference() + { + --referenceCount; + } + void releaseReference() { SLANG_ASSERT(referenceCount != 0); @@ -192,6 +197,15 @@ namespace Slang return pointer; } + T* detach() + { + if (pointer) + dynamic_cast<RefObject*>(pointer)->decreaseReference(); + auto rs = pointer; + pointer = nullptr; + return rs; + } + private: T* pointer; |
