// tlist1.cc // test program to instantiate List1 and List1 #include #include "list1.h" int main( ) { List1 L1, L2; List1 L3; List1 L4; int j; cout << "(This should be empty.)" << endl; L3.Print( ); cout << endl; return 0; } // end of main( )