|
Gaudi Framework, version v22r2 |
| Home | Generated: Tue May 10 2011 |
#include "GaudiKernel/HistoryObj.h"#include <string>#include <vector>

Go to the source code of this file.
Classes | |
| class | ServiceHistory |
| ServiceHistory class definition. More... | |
Functions | |
| GAUDI_API std::ostream & | operator<< (std::ostream &lhs, const ServiceHistory &rhs) |
| GAUDI_API std::ostream& operator<< | ( | std::ostream & | lhs, |
| const ServiceHistory & | rhs | ||
| ) |
Definition at line 88 of file ServiceHistory.cpp.
{
lhs << "Name: " << rhs.name() << endl;
lhs << "Type: " << rhs.type() << endl;
//Properties
lhs << "Properties: [" << endl;
for ( ServiceHistory::PropertyList::const_iterator
ipprop=rhs.properties().begin();
ipprop!=rhs.properties().end(); ++ipprop ) {
const Property& prop = **ipprop;
prop.fillStream(lhs);
lhs << endl;
}
lhs << "]" << endl;
return lhs;
}