#include <Functor.h>
Public Member Functions | |
unsigned long | operator() (const ACE_UINT64 &t) const |
Simply returns t. |
Definition at line 303 of file Functor.h.
|
Simply returns t.
Definition at line 157 of file Functor.inl. References ACE_UINT64.
00158 { 00159 #if (ACE_SIZEOF_LONG == 4) 00160 return ACE_U64_TO_U32 (t); 00161 #else 00162 return static_cast<unsigned long> (t); 00163 #endif /* ACE_SIZEOF_LONG */ 00164 } |