2 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
4 template<class RECEIVER> ACE_INLINE
5 ACE_Member_Function_Command<RECEIVER>::
6 ACE_Member_Function_Command (RECEIVER &recvr, PTMF ptmf)
12 template<class RECEIVER> ACE_INLINE int
13 ACE_Member_Function_Command<RECEIVER>::execute (void *)
15 (this->receiver_.*ptmf_)();
19 template <class TYPE> ACE_INLINE unsigned long
20 ACE_Hash<TYPE>::operator () (const TYPE &t) const
25 template <class TYPE> ACE_INLINE unsigned long
26 ACE_Pointer_Hash<TYPE>::operator () (TYPE t) const
28 #if defined (ACE_WIN64)
29 // The cast below is legit... we only want a hash, and need not convert
30 // the hash back to a pointer.
31 # pragma warning(push)
32 # pragma warning(disable : 4311) /* Truncate pointer to unsigned long */
33 #endif /* ACE_WIN64 */
34 return ACE_Utils::truncate_cast<unsigned long> ((intptr_t)t);
35 #if defined (ACE_WIN64)
37 #endif /* ACE_WIN64 */
40 template <class TYPE> ACE_INLINE bool
41 ACE_Equal_To<TYPE>::operator () (const TYPE &lhs,
42 const TYPE &rhs) const
47 template <class TYPE> ACE_INLINE bool
48 ACE_Less_Than<TYPE>::operator () (const TYPE &lhs,
49 const TYPE &rhs) const
54 ACE_END_VERSIONED_NAMESPACE_DECL