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

◆ operator()()

MyFormat sff::helper::MyFormat::operator() ( const int &  w,
const int &  p,
const bool &  s = true 
) const
inline

Definition at line 54 of file sffverbose.cc.

References precision, scientific, and width.

55  {
56  MyFormat retval=*this;
57  retval.width=w;
58  retval.precision=p;
59  retval.scientific=s;
60  return retval;
61  }