![]() |
|
|
Generated: 18 Jul 2008 |
#include <Printer.h>
Definition at line 50 of file Printer.h.
Static Public Member Functions | |
| static std::string | print (const DataObject &type) |
| static std::string GaudiPython::Printer< DataObject >::print | ( | const DataObject & | type | ) | [inline, static] |
Definition at line 52 of file Printer.h.
References DataObject::fillStream(), and std::basic_ostringstream< _CharT, _Traits, _Alloc >::str().
00053 { 00054 std::ostringstream stream ; 00055 type.fillStream( stream ) ; 00056 return stream.str() ; 00057 } ;