// FILE: swap.cpp // IMPLEMENTS: Swap function to swap the contents of two objects. // remove header file inclusion #include "swap.h" // Fill in - add a template prefix. void swap(Item& x, Item& y) { Item temp; temp = x; x = y; y = temp; }