![]() |
|
|
Generated: 18 Jul 2008 |
#include <Printer.h>
Definition at line 39 of file Printer.h.
Static Public Member Functions | |
| static std::string | print (const ContainedObject &object) |
| static std::string GaudiPython::Printer< ContainedObject >::print | ( | const ContainedObject & | object | ) | [inline, static] |
Definition at line 42 of file Printer.h.
References ContainedObject::fillStream(), and std::basic_ostringstream< _CharT, _Traits, _Alloc >::str().
00043 { 00044 std::ostringstream stream ; 00045 object.fillStream( stream ) ; 00046 return stream.str() ; 00047 } ;