Go to the source code of this file.
Definition at line 2 of file LPRINT.C.
Referenced by main(), HourlyWorker::printName(), CommissionWorker::printName(), and read_freqs().
00002 { 00003 if (in.isEmpty()) cout << "()\n"; 00004 else { 00005 in.setFirst(); 00006 cout << "( " << in.currValue(); 00007 in.next(); 00008 while (in.isInList()) { 00009 cout << ", " << in.currValue(); 00010 in.next(); 00011 } 00012 cout << " )\n"; 00013 } 00014 }