/* -*- C++ -*- */ // $Id$ // Set.i template ACE_INLINE size_t ACE_Fixed_Set::size (void) const { return this->cur_size_; } template ACE_INLINE size_t ACE_Bounded_Set::size (void) const { ACE_TRACE ("ACE_Bounded_Set::size"); return this->cur_size_; } template ACE_INLINE size_t ACE_Unbounded_Set::size (void) const { // ACE_TRACE ("ACE_Unbounded_Set::size"); return this->cur_size_; }