aboutsummaryrefslogtreecommitdiff
path: root/week-6/Punt.h
diff options
context:
space:
mode:
Diffstat (limited to 'week-6/Punt.h')
-rw-r--r--week-6/Punt.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/week-6/Punt.h b/week-6/Punt.h
new file mode 100644
index 0000000..b56e798
--- /dev/null
+++ b/week-6/Punt.h
@@ -0,0 +1,17 @@
+#pragma once
+
+#include <iostream>
+
+class Punt
+{
+private:
+ Punt();
+ Punt( int x, int y, int z );
+
+ friend std::ostream& operator << ( std::ostream& output, const Punt& punt );
+
+private:
+ int x, y, z;
+
+ friend class PuntContainer;
+};