// -*- C++ -*- ACE_BEGIN_VERSIONED_NAMESPACE_DECL template ACE_INLINE int ACE_Hash_Map_With_Allocator::close (ACE_Allocator *alloc) { ACE_TRACE ("ACE_Hash_Map_With_Allocator::close"); this->table_allocator_ = alloc; this->entry_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->table_allocator_ = alloc; this->entry_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->table_allocator_ = alloc; this->entry_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->table_allocator_ = alloc; this->entry_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->table_allocator_ = alloc; this->entry_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->table_allocator_ = alloc; this->entry_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->table_allocator_ = alloc; this->entry_allocator_ = alloc; return this->find_i (ext_id); } ACE_END_VERSIONED_NAMESPACE_DECL