#include "StdAfx.h"
#include "Swap.h"
#include <iostream>
#include <math.h.>
#include <iomanip>
using namespace std;
Swap::Swap(void)
{
}
Swap::~Swap(void)
{
}
void swapDriver ()
{
int x;
int y;
cout << "\nPlease enter x: ";
cin >> x;
cout << "\nPlease enter y: ";
cin >> y;
cout << "\n Here is the x value: "<< x << " and the y value: " << y;
swap (&x, &y );
cout << "\n After swap: Here is x: "<< x << " and y: " << y;
}