diff options
Diffstat (limited to 'week-6/Punt.h')
| -rw-r--r-- | week-6/Punt.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/week-6/Punt.h b/week-6/Punt.h deleted file mode 100644 index b56e798..0000000 --- a/week-6/Punt.h +++ /dev/null @@ -1,17 +0,0 @@ -#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; -}; |