comparison src/load-save.cc @ 3548:ab7fa5a8f23f

[project @ 2000-02-03 01:17:15 by jwe]
author jwe
date Thu, 03 Feb 2000 01:17:21 +0000
parents 0ff7323dab8b
children 41daa489833a
comparison
equal deleted inserted replaced
3547:975398bed659 3548:ab7fa5a8f23f
1629 output_buf 1629 output_buf
1630 << "type rows cols name\n" 1630 << "type rows cols name\n"
1631 << "==== ==== ==== ====\n"; 1631 << "==== ==== ==== ====\n";
1632 1632
1633 output_buf 1633 output_buf
1634 << setiosflags (std::ios::left) 1634 << std::setiosflags (std::ios::left)
1635 << setw (16) << tc.type_name () . c_str () 1635 << std::setw (16) << tc.type_name () . c_str ()
1636 << setiosflags (std::ios::right) 1636 << std::setiosflags (std::ios::right)
1637 << setw (7) << tc.rows () 1637 << std::setw (7) << tc.rows ()
1638 << setw (7) << tc.columns () 1638 << std::setw (7) << tc.columns ()
1639 << " "; 1639 << " ";
1640 } 1640 }
1641 output_buf << name << "\n"; 1641 output_buf << name << "\n";
1642 } 1642 }
1643 else 1643 else