/********************************************************************************************
ezwSwap.h
	Jim Millard
	for CO311

    EZwindows sort visualization Swap routines

********************************************************************************************/
#ifndef __EZWSWAP_H
#define __EZWSWAP_H

#include <ezwin.h>
#include <ray.h>

//common swapping routines for (almost) all sort algorithms
void Swap(int& A, int& B);
void Swap(SimpleWindow& W, RaySegment& barA, RaySegment& barB, const short load);

#endif