/* -*- C++ -*- */ // Hash_Map_With_Allocator_T.i,v 4.3 1999/09/15 19:52:42 bala Exp // Hash_Map_With_Allocator_T.i template ACE_INLINE int ACE_Hash_Map_With_Allocator::close (ACE_Allocator *alloc) { ACE_TRACE ("ACE_Hash_Map_With_Allocator::close"); this->allocator_ = alloc; return this->close_i (); } template ACE_INLINE int ACE_Hash_Map_With_Allocator::bind (const EXT_ID &ext_id, const INT_ID &int_id, ACE_Allocator *alloc) { ACE_TRACE ("ACE_Hash_Map_With_Allocator::bind"); this->allocator_ = alloc; return this->bind_i (ext_id, int_id); } template ACE_INLINE int ACE_Hash_Map_With_Allocator::unbind (const EXT_ID &ext_id, INT_ID &int_id, ACE_Allocator *alloc) { ACE_TRACE ("ACE_Hash_Map_With_Allocator::unbind"); this->allocator_ = alloc; return this->unbind_i (ext_id, int_id); } template ACE_INLINE int ACE_Hash_Map_With_Allocator::unbind (const EXT_ID &ext_id, ACE_Allocator *alloc) { ACE_TRACE ("ACE_Hash_Map_With_Allocator::unbind"); this->allocator_ = alloc; return this->unbind_i (ext_id); } template ACE_INLINE int ACE_Hash_Map_With_Allocator::rebind (const EXT_ID &ext_id, const INT_ID &int_id, EXT_ID &old_ext_id, INT_ID &old_int_id, ACE_Allocator *alloc) { ACE_TRACE ("ACE_Hash_Map_With_Allocator::rebind"); this->allocator_ = alloc; return this->rebind_i (ext_id, int_id, old_ext_id, old_int_id); } template ACE_INLINE int ACE_Hash_Map_With_Allocator::find (const EXT_ID &ext_id, INT_ID &int_id, ACE_Allocator *alloc) { ACE_TRACE ("ACE_Hash_Map_With_Allocator::find"); this->allocator_ = alloc; return this->find_i (ext_id, int_id); } template ACE_INLINE int ACE_Hash_Map_With_Allocator::find (const EXT_ID &ext_id, ACE_Allocator *alloc) { ACE_TRACE ("ACE_Hash_Map_With_Allocator::find"); this->allocator_ = alloc; return this->find_i (ext_id); }