// File: main0.C // // Testing the GenList and IntCell classes #include #include #include #include "intcell.h" main() { GenList L ; IntCell cell(5) ; ListCell *ptr ; ptr = cell.clone() ; cout << "Cloning test: " ; ptr->print() ; cout << endl ; delete ptr ; L.append(cell) ; L.append(IntCell(5)) ; L.print() ; cout << endl ; L.remove(cell) ; }