// Filename: shape.h
// Author: G. Safko  <greg.safko@gmail.com>
// Description: a point object
// Date Written: April 26, 2005

#ifndef SHAPE_H
#define SHAPE_H

class shape
{


public:
	// accessors
	
	
	virtual double area() { return 0; }
	virtual double volume() { return 0; }
	

	virtual void printName() const = 0;
	

};

#endif

