3 #ifndef GAUDIPYTHON_PRINTER_H
4 #define GAUDIPYTHON_PRINTER_H 1
15 #include "GaudiKernel/ContainedObject.h"
16 #include "GaudiKernel/DataObject.h"
30 static std::string
print
31 (
const TYPE&
object )
33 std::stringstream stream ;
34 stream <<
object << std::endl ;
41 static std::string
print
44 std::ostringstream stream ;
45 object.fillStream( stream ) ;
54 std::ostringstream stream ;
62 #endif // GAUDIPYTHON_PRINTER_H