Using the Standard iostreams Library
Interaction with the C++ Standard iostreams library is accomplished in two ways:
Adapter classes inherit from the iostreams
streambuf class.
Forwarding classes take an iostreams stream buffer instance and forward a request to it. This enables applications designed with streams to reuse iostreams stream buffer components.
The Streams package supports Standard iostreams.