bitstream.h

This file exports stream classes related to reading and writing individual bits at a time from various input sources. Each base type ibitstream and obitstream has two concrete subclasses, one for use with files (ifbitstream, ofbitstream) and one for use with string buffers (istringbitstream, ostringbitstream).

Available since: 2014/02/01 version of C++ library

Class
ibitstream This base class reads bits of data from various input sources.
ifbitstream This class reads bits of data from input files.
istringbitstream This class reads bits of data from the characters of a string.
obitstream This base class writes bits of data to various output sources.
ofbitstream This class writes bits of data to output files.
ostringbitstream This class writes bits of data into an internal string buffer.