From d8b70727fdda5c1de19736724809e76e060b417e Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 18 Aug 2010 17:49:47 +0200 Subject: Add callback support for zero counter event in shared_base --- odb/shared-ptr/base.cxx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'odb/shared-ptr/base.cxx') diff --git a/odb/shared-ptr/base.cxx b/odb/shared-ptr/base.cxx index 56fc32c..197d20b 100644 --- a/odb/shared-ptr/base.cxx +++ b/odb/shared-ptr/base.cxx @@ -21,6 +21,20 @@ namespace odb { return "object is not shared"; } + + bool shared_base:: + _dec_ref_callback () + { + bool r (--counter_ == 0); + + if (r) + { + callback_->zero_counter (callback_->arg); + r = (counter_ == 0); + } + + return r; + } } // -- cgit v1.1