searchengine/util/tsrc/cpixtoolsunittest/src/memorytest.cpp
changeset 10 afe194b6b1cd
parent 0 671dee74050a
equal deleted inserted replaced
9:d575fd691cf9 10:afe194b6b1cd
    48 
    48 
    49 zoo_iterator ZooIterator() {
    49 zoo_iterator ZooIterator() {
    50 	return zoo_iterator( new poly_zoo_iterator_() );
    50 	return zoo_iterator( new poly_zoo_iterator_() );
    51 }
    51 }
    52 
    52 
    53 void TestAutoIterator(Itk::TestMgr * ) {
    53 void TestAutoIterator(Itk::TestMgr * testMgr) {
    54 	zoo_iterator i = ZooIterator(); 
    54 	zoo_iterator i = ZooIterator(); 
    55 	while (i) {
    55 	while (i) {
    56 		std::cout<<"Animal: "<<i++<<std::endl;
    56 		std::cout<<"Animal: "<<i++<<std::endl;
    57 	}
    57 	}
    58 }
    58 }