#include <Functor_T.h>
Public Methods | |
| u_long | operator() (TYPE t) const |
| Simply returns t. More... | |
Definition at line 100 of file Functor_T.h.
|
||||||||||
|
Simply returns t.
Definition at line 11 of file Functor_T.i.
00012 {
00013 #if defined (ACE_WIN64)
00014 // The cast below is legit... we only want a hash, and need not convert
00015 // the hash back to a pointer.
00016 # pragma warning(push)
00017 # pragma warning(disable : 4311) /* Truncate pointer to u_long */
00018 #endif /* ACE_WIN64 */
00019 return ACE_reinterpret_cast (u_long, t);
00020 #if defined (ACE_WIN64)
00021 # pragma warning(pop)
00022 #endif /* ACE_WIN64 */
00023 }
|
1.2.14 written by Dimitri van Heesch,
© 1997-2002