DATRW++ library: seismic data I/O with multiple formats

◆ help() [1/2]

void datrw::obinarystream::help ( std::ostream &  os = std::cout)
static

Definition at line 135 of file obinarystream.cc.

References DATRW_OBINARYSTREAM_CC_VERSION.

Referenced by datrw::online_help().

136  {
137  os <<
138  std::endl <<
139  "BINARY writing functions" << std::endl <<
140  "------------------------" << std::endl <<
141  DATRW_OBINARYSTREAM_CC_VERSION << std::endl <<
142  std::endl;
143  os <<
144  "This module writes data in its simple binary representaion.\n"
145  "It is provided primarily for input/output efficiency. This format\n"
146  "does not require any output or input formatting. It also does not\n"
147  "require conversion of sample values. For this reason no round-off\n"
148  "will take place, not for the sample values and not for the sampling\n"
149  "interval. The format maps memory content to file and is lossless\n"
150  "for this reason. The file is identified by a magic number. This\n"
151  "allows the input module to perform automatic on-the-fly\n"
152  "byte-swapping if required by the CPU type in use.\n"
153  << std::endl;
154  } // void obinarystream::help(std::ostream& os)
#define DATRW_OBINARYSTREAM_CC_VERSION
Here is the caller graph for this function: