// swap.h: A header file defining the function template
// swapObjects
template <typename T>
void swapObjects(T &x, T &y) {
 T w = x;
 x = y;
 y = w;
}
