Gaudi Framework, version v22r2

Home   Generated: Tue May 10 2011
Functions

ServiceHistory.cpp File Reference

#include "GaudiKernel/ServiceHistory.h"
#include "GaudiKernel/JobHistory.h"
#include "GaudiKernel/IService.h"
#include "GaudiKernel/Service.h"
#include <iostream>
Include dependency graph for ServiceHistory.cpp:

Go to the source code of this file.

Functions

ostreamoperator<< (ostream &lhs, const ServiceHistory &rhs)

Function Documentation

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;
}
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines

Generated at Tue May 10 2011 18:54:25 for Gaudi Framework, version v22r2 by Doxygen version 1.7.2 written by Dimitri van Heesch, © 1997-2004