|
Gaudi Framework, version v22r2 |
| Home | Generated: Tue May 10 2011 |
#include <GaudiPython/Printer.h>
Static Public Member Functions | |
| static std::string | print (const TYPE &object) |
Definition at line 28 of file Printer.h.
| static std::string GaudiPython::Printer< TYPE >::print | ( | const TYPE & | object ) | [inline, static] |
Definition at line 31 of file Printer.h.
{
std::stringstream stream ;
stream << object << std::endl ;
return stream.str() ;
} ;