/* Sean               *
 * rectangle.h        *
 * February 7, 2008   */

template<class DataType>
class Rectangle
{
public:
	void setWidth(DataType someWidth);
	void setLength(DataType someLength);
	bool lengthGreaterThanWidth();
	DataType getPerimeter();
	DataType getArea();
	
private:
	DataType width;
	DataType length;
	DataType perimeter;
	DataType area;
}

#include "rectangle.cpp"
