diff options
| author | lonkaars <loek@pipeframe.xyz> | 2022-11-09 11:48:12 +0100 |
|---|---|---|
| committer | lonkaars <loek@pipeframe.xyz> | 2022-11-09 11:48:12 +0100 |
| commit | ffae2cb77bfb3263146a2de0deedf6528d4df461 (patch) | |
| tree | 88e4b61087069f8ce5badadbc6264d20b8a051d5 /week-6/Punt.cpp | |
| parent | d797758769d033c64babdf77ea6b64262f792b23 (diff) | |
repository aanpassen voor oop2
Diffstat (limited to 'week-6/Punt.cpp')
| -rw-r--r-- | week-6/Punt.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
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; -} - |