// $Id$ template ACE_INLINE ACE_RMCast_Copy_On_Write_Collection:: ACE_RMCast_Copy_On_Write_Collection (void) : refcount_ (1) { } // **************************************************************** template ACE_INLINE ACE_RMCast_Copy_On_Write_Read_Guard:: ACE_RMCast_Copy_On_Write_Read_Guard (Container &container) : collection (0) , mutex_ (container.mutex_) { ACE_GUARD (ACE_SYNCH_MUTEX, ace_mon, this->mutex_); this->collection = container.collection_; this->collection->_incr_refcnt (); } template ACE_INLINE ACE_RMCast_Copy_On_Write_Read_Guard:: ~ACE_RMCast_Copy_On_Write_Read_Guard (void) { if (this->collection != 0) { ACE_GUARD (ACE_SYNCH_MUTEX, ace_mon, this->mutex_); this->collection->_decr_refcnt (); } } // ****************************************************************