aboutsummaryrefslogtreecommitdiff
path: root/week-2/Rechthoek.h
diff options
context:
space:
mode:
Diffstat (limited to 'week-2/Rechthoek.h')
-rw-r--r--week-2/Rechthoek.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/week-2/Rechthoek.h b/week-2/Rechthoek.h
deleted file mode 100644
index 4f526f9..0000000
--- a/week-2/Rechthoek.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#pragma once
-
-#include "Vorm.h"
-
-class Rechthoek : public Vorm {
- public:
- Rechthoek(double breedte, double hoogte);
- virtual double getSomGraden();
- virtual double getOppervlakte();
- private:
- double breedte;
- double hoogte;
-};