#ifndef SWAP_TEMPLATE #define SWAP_TEMPLATE template void swap(T& x, T& y) { T temp; temp = x; x = y; y = temp; } #endif