diff options
Diffstat (limited to 'week-6/main.cpp')
| -rw-r--r-- | week-6/main.cpp | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/week-6/main.cpp b/week-6/main.cpp deleted file mode 100644 index 701ac33..0000000 --- a/week-6/main.cpp +++ /dev/null @@ -1,23 +0,0 @@ -#include "PuntContainer.h" - -#include <iostream> - -int main() -{ - PuntContainer container; - - container.add( 1, 3, 4 ); - container.add( 3, 2, 1 ); - container.add( 2, 4, 2 ); - - container.sort2( &PuntContainer::checkZ2 ); - container.showAll(); - - container.sort2( &PuntContainer::checkY2 ); - container.showAll(); - - container.sort2( &PuntContainer::checkX2 ); - container.showAll(); - - return 0; -} |