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

◆ operator<<() [9/10]

std::ostream& sff::operator<< ( std::ostream &  os,
const TraceHeader th 
)
inline

Definition at line 391 of file sffxx.h.

References sff::TraceHeader::writeheader(), and sff::TraceHeader::writetrailer().

392  {
393  th.writeheader(os);
394  os << "DATA!" << std::endl;
395  th.writetrailer(os);
396  return(os);
397  }
Here is the call graph for this function: