#include "Shape.h" Shape::Shape() { } Shape::~Shape() { } double Shape::operator-(Shape* toSub) { return (this->getArea() - toSub->getArea()); }