SFF++ library: reading and writing SFF from C++

◆ verbose() [8/8]

void sff::verbose ( std::ostream &  os,
const TraceHeader th 
)

Definition at line 262 of file sffverbose.cc.

References sff::TraceHeader::dast(), sff::TraceHeader::free(), sff::TraceHeader::hasfree(), sff::TraceHeader::hasinfo(), sff::TraceHeader::info(), verbose(), and sff::TraceHeader::wid2().

263  {
264  os << "contents of SFF trace header:" << std::endl;
265  verbose(os,th.dast());
266  verbose(os,th.wid2());
267  if (th.hasinfo()) { verbose(os,th.info()); }
268  else { os << "trace header contains no INFO line" << std::endl; }
269  if (th.hasfree()) { verbose(os,th.free()); }
270  else { os << "trace header contains no FREE block" << std::endl; }
271  } // void verbose(std::ostream& os, const TraceHeader& th)
void verbose(std::ostream &os, const TraceHeader &th)
Definition: sffverbose.cc:262
Here is the call graph for this function: