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 stdiostream
iostream                                    Up Contents Index Back
──The Microsoft iostream Classes────────────────────────────────────────────
 
  Description
 
  The stdiostream class makes I/O calls (through the stdiobuf class) to
  the standard I/O system, which does its own internal buffering. Calls to
  the functions declared in STDIO.H such as printf, can be mixed with
  stdiostream I/O calls.
 
  This class is included for compatibility with earlier stream libraries.
  You can avoid use of the stdiostream class if you use the ostream or
  istream class with an associated filebuf class. You must also use the
  stream class's ios::flags member function to set the ios::stdio format
  flag value.
 
  The use of the stdiobuf class may reduce efficiency because it imposes
  an extra level of buffering. Do not use this feature unless you need to
  mix iostream library calls with standard I/O calls for the same file.
 
  #include <stdiostr.h>
 
  See Also
 
  stdiobuf, ios::flags
 
  Public Members
 
  Construction/Destruction
 
  stdiostream   Constructs a stdiostream object that is associated with
                  a standard I/O FILE pointer.
 
  ~stdiostream   Destroys a stdiostream object (virtual).
 
  Other Functions
 
  rdbuf   Gets the stream's stdiobuf object.
 
 
                                     -♦-