The Microsoft Input/Output Stream Classes (iostream.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
class iostream
istream  ostream                          Up Contents Index Back
──The Microsoft iostream Classes────────────────────────────────────────────
 
  Description
 
  The iostream class provides the basic capability for sequential and
  random-access I/O. It inherits functionality from both the istream and
  ostream classes.
 
  The iostream class works in conjunction with classes derived from
  streambuf (for example, filebuf). In fact, most of the iostream
  "personality" comes from its attached streambuf class. You can use
  iostream objects for sequential disk I/O if you first construct an
  appropriate filebuf object. More often, you will use objects of classes
  fstream and strstream.
 
  Derivation
 
  For derivation suggestions, see the istream and ostream classes.
 
  #include <iostream.h>
 
  See Also
 
  istream, ostream, fstream, strstream, stdiostream
 
  Public Members
 
  iostream   Constructs an iostream object that is attached to an
               existing streambuf object.
 
  ~iostream   Destroys an iostream object.
 
 
                                     -♦-