From ffae2cb77bfb3263146a2de0deedf6528d4df461 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Wed, 9 Nov 2022 11:48:12 +0100 Subject: repository aanpassen voor oop2 --- week-6/Punt.cpp | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 week-6/Punt.cpp (limited to 'week-6/Punt.cpp') diff --git a/week-6/Punt.cpp b/week-6/Punt.cpp deleted file mode 100644 index 707047e..0000000 --- a/week-6/Punt.cpp +++ /dev/null @@ -1,17 +0,0 @@ -#include "Punt.h" - -Punt::Punt() { - this->x = this->y = this->z = 0; -} - -Punt::Punt(int x, int y, int z) { - this->x = x; - this->y = y; - this->z = z; -} - -std::ostream& operator << ( std::ostream& output, const Punt& punt ) { - output << "(" << punt.x << "," << punt.y << "," << punt.z << ")"; - return output; -} - -- cgit v1.2.3