/** * @file Swap.inl * * $Id$ * * @author Carlos O'Ryan */ template ACE_INLINE void ACE_Swap::swap (T &lhs, T& rhs) { T tmp = lhs; lhs = rhs; rhs = tmp; }