|
Gaudi Framework, version v22r1 |
| Home | Generated: Mon Feb 28 2011 |
#include "GaudiKernel/ServiceHistory.h"#include "GaudiKernel/JobHistory.h"#include "GaudiKernel/IService.h"#include "GaudiKernel/Service.h"#include <iostream>
Go to the source code of this file.
Functions | |
| ostream & | operator<< (ostream &lhs, const ServiceHistory &rhs) |
| ostream& operator<< | ( | 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;
}