1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/* -*- C++ -*- */
// $Id$
#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 <T_1> ACE_INLINE int
ACE_Hash_Cache_Map_Manager<T_2>::bind (const KEY &key,
const VALUE &value)
{
return ACE_HCMM_BASE::bind (key,
value);
}
template <T_1> ACE_INLINE int
ACE_Hash_Cache_Map_Manager<T_2>::rebind (const KEY &key,
const VALUE &value)
{
return ACE_HCMM_BASE::rebind (key,
value);
}
template <T_1> ACE_INLINE int
ACE_Hash_Cache_Map_Manager<T_2>::rebind (const KEY &key,
const VALUE &value,
VALUE &old_value)
{
return ACE_HCMM_BASE::rebind (key,
value,
old_value);
}
template <T_1> ACE_INLINE int
ACE_Hash_Cache_Map_Manager<T_2>::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 <T_1> ACE_INLINE int
ACE_Hash_Cache_Map_Manager<T_2>::trybind (const KEY &key,
VALUE &value)
{
return ACE_HCMM_BASE::trybind (key,
value);
}
template <T_1> ACE_INLINE int
ACE_Hash_Cache_Map_Manager<T_2>::unbind (const KEY &key)
{
return ACE_HCMM_BASE::unbind (key);
}
template <T_1> ACE_INLINE int
ACE_Hash_Cache_Map_Manager<T_2>::unbind (const KEY &key,
VALUE &value)
{
return ACE_HCMM_BASE::unbind (key,
value);
}
#undef T_1
#undef T_2
|