00001 #include "Event/JobInfo.h" 00002 00003 std::ostream& DayaBay::JobInfo::fillStream(std::ostream& s) const 00004 { 00005 s << "{ " 00006 << " jobId : " << m_jobId.uuid() << std::endl; 00007 00008 DayaBay::JobInfo::JobParameters::const_iterator it, done 00009 = m_parameters.end(); 00010 for (it=m_parameters.begin(); it != done; ++it) { 00011 s << " " << it->first << " : " << it->second << std::endl; 00012 } 00013 s << "}"; 00014 return s; 00015 }