// File: printall.h // // Our template for a function that prints out the contents // of an STL container. #ifndef _printall_h #define _printall_h template void printall (TYPE seq) { TYPE::iterator it ; for (it = seq.begin() ; it != seq.end() ; it++) { cout << *it << endl ; } } #endif