summaryrefslogtreecommitdiffstats
path: root/Bachelor/Prog2/Prakt2/geomObj/Shape.cpp
blob: 8eb43e5dc5a937b68a07db2ee729a7df235e7d72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "Shape.h"

Shape::Shape()
{
}

Shape::~Shape()
{
}

double Shape::operator-(Shape* toSub)
{
	return (this->getArea() - toSub->getArea());
}