summaryrefslogtreecommitdiffstats
path: root/Bachelor/Prog2/Prakt2/geomObj/Square.h
diff options
context:
space:
mode:
Diffstat (limited to 'Bachelor/Prog2/Prakt2/geomObj/Square.h')
-rw-r--r--Bachelor/Prog2/Prakt2/geomObj/Square.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/Bachelor/Prog2/Prakt2/geomObj/Square.h b/Bachelor/Prog2/Prakt2/geomObj/Square.h
new file mode 100644
index 0000000..022483b
--- /dev/null
+++ b/Bachelor/Prog2/Prakt2/geomObj/Square.h
@@ -0,0 +1,18 @@
+#ifndef _SQUARE_H_
+#define _SQUARE_H_
+
+#include "Rectangle.h"
+
+class Square : public Rectangle
+{
+public:
+ Square();
+ Square(double);
+ virtual ~Square();
+ virtual double getCircumference();
+ virtual double getArea();
+private:
+ const double length;
+};
+
+#endif //_SQUARE_H_