more verbose write

This commit is contained in:
David Rose 2005-07-11 23:35:22 +00:00
parent f45e192715
commit f1923a7a19

View File

@ -311,8 +311,12 @@ output(ostream &out) const {
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
void PandaSystem:: void PandaSystem::
write(ostream &out) const { write(ostream &out) const {
out << *this << ":\n"; out << *this << "\n"
<< "compiled on " << get_build_date() << " by "
<< get_distributor() << "\n"
<< "with compiler " << PandaSystem::get_compiler() << "\n\n";
out << "Optional systems:\n";
for (Systems::const_iterator si = _systems.begin(); for (Systems::const_iterator si = _systems.begin();
si != _systems.end(); si != _systems.end();
++si) { ++si) {