26.3 The ADAPTER Pattern (cont.)
Other ADAPTERS:
- ostream_iterator wraps a stream with an iterator i/f:
copy( source.begin(), source.end(),
ostream_iterator<string>( cout, "\n" ));
- Overload the * and = operators
- operator++ overloaded to do nothing
prev
|top
|next