#include "PuntContainer.h" #include 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; }