/* -*- C++ -*- */ // Hash_Cache_Map_Manager_T.i,v 4.4 1999/07/22 00:12:01 irfan Exp #define T_1 class KEY, class VALUE, class HASH_KEY, class COMPARE_KEYS, class CACHING_STRATEGY, class ATTRIBUTES #define T_2 KEY, VALUE, HASH_KEY, COMPARE_KEYS, CACHING_STRATEGY, ATTRIBUTES template ACE_INLINE int ACE_Hash_Cache_Map_Manager::bind (const KEY &key, const VALUE &value) { return ACE_HCMM_BASE::bind (key, value); } template ACE_INLINE int ACE_Hash_Cache_Map_Manager::rebind (const KEY &key, const VALUE &value) { return ACE_HCMM_BASE::rebind (key, value); } template ACE_INLINE int ACE_Hash_Cache_Map_Manager::rebind (const KEY &key, const VALUE &value, VALUE &old_value) { return ACE_HCMM_BASE::rebind (key, value, old_value); } template ACE_INLINE int ACE_Hash_Cache_Map_Manager::rebind (const KEY &key, const VALUE &value, KEY &old_key, VALUE &old_value) { return ACE_HCMM_BASE::rebind (key, value, old_key, old_value); } template ACE_INLINE int ACE_Hash_Cache_Map_Manager::trybind (const KEY &key, VALUE &value) { return ACE_HCMM_BASE::trybind (key, value); } template ACE_INLINE int ACE_Hash_Cache_Map_Manager::unbind (const KEY &key) { return ACE_HCMM_BASE::unbind (key); } template ACE_INLINE int ACE_Hash_Cache_Map_Manager::unbind (const KEY &key, VALUE &value) { return ACE_HCMM_BASE::unbind (key, value); } #undef T_1 #undef T_2