|
Gaudi Framework, version v23r2 |
| Home | Generated: Thu Jun 28 2012 |
#include "GaudiKernel/GaudiHandle.h"#include <iostream>#include <string>
Go to the source code of this file.
Functions | |
| std::ostream & | operator<< (std::ostream &os, const GaudiHandleInfo &handle) |
| std::ostream& operator<< | ( | std::ostream & | os, |
| const GaudiHandleInfo & | handle | ||
| ) |
Definition at line 116 of file GaudiHandle.cpp.
{
std::string msg;
const std::string& propName = handle.propertyName();
if ( !propName.empty() ) msg += propName + " = ";
msg += handle.pythonRepr();
os << msg;
return os;
}