Document return values
[ACE_TAO.git] / ACE / ace / Functor_T.inl
blob9860eb412d21aa33a7d18c00c1dfa113d69103f2
1 // -*- C++ -*-
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)
7   : receiver_(recvr)
8   , ptmf_(ptmf)
12 template<class RECEIVER> ACE_INLINE int
13 ACE_Member_Function_Command<RECEIVER>::execute (void *)
15   (this->receiver_.*ptmf_)();
16   return 0;
19 template <class TYPE> ACE_INLINE unsigned long
20 ACE_Hash<TYPE>::operator () (const TYPE &t) const
22   return t.hash ();
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)
36 #  pragma warning(pop)
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
44   return lhs == rhs;
47 template <class TYPE> ACE_INLINE bool
48 ACE_Less_Than<TYPE>::operator () (const TYPE &lhs,
49                                   const TYPE &rhs) const
51   return lhs < rhs;
54 ACE_END_VERSIONED_NAMESPACE_DECL