|
Gaudi Framework, version v22r0 |
| Home | Generated: 9 Feb 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.
00032 { 00033 std::stringstream stream ; 00034 stream << object << std::endl ; 00035 return stream.str() ; 00036 } ;