aboutsummaryrefslogtreecommitdiff
path: root/week-6/Punt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'week-6/Punt.cpp')
-rw-r--r--week-6/Punt.cpp17
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;
-}
-