summaryrefslogtreecommitdiffstats
path: root/Bachelor/Prog2/Prakt2/geomObj/Circle.h
blob: 580b2541ae63f966eda52bc7e10ecd58b48aa34d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _CIRCLE_H_
#define _CIRCLE_H_

#include "Shape.h"

class Circle : public Shape
{
public:
	Circle();
	Circle(double);
	virtual ~Circle();
	virtual double getArea();
	virtual double getCircumference();
private:
	const double radius;
};

#endif //_CIRCLE_H_