TSIO++ Time series input/output

◆ operator>>() [2/3]

datrw::idatstream & ts::sff::operator>> ( datrw::idatstream &  is,
TraceHeader th 
)

Definition at line 58 of file inputoperators.cc.

References ts::sff::TraceHeader::free(), ts::sff::TraceHeader::info(), and ts::sff::TraceHeader::wid2().

60  {
61  ::sff::FREE free;
62  ::sff::INFO info;
63  ::sff::WID2 wid2;
64  th=TraceHeader();
65  is >> wid2; th.wid2(wid2);
66  if (is.hasfree()) { is >> free; th.free(free); }
67  if (is.hasinfo()) { is >> info; th.info(info); }
68  return(is);
69  }
Here is the call graph for this function: