Previous fileTop of DocumentContentsIndex pageNext file
Apache C++ Standard Library Reference Guide

basic_iostream

Library:  Input/output


basic_ostream basic_iostream basic_ios ios_base basic_istream

Local Index

Members

Summary

Class that assists in formatting and interpreting sequences of characters controlled by a stream buffer

Synopsis

#include <istream>

namespace std {
  template<class charT, class traits = char_traits<charT> >
  class basic_iostream;
}

Description

The class basic_iostream inherits a number of functions from classes basic_ostream and basic_istream. They assist in formatting and interpreting sequences of characters controlled by a stream buffer. Two groups of functions share common properties, the formatted functions and the unformatted functions.

Interface

Constructor

explicit basic_iostream(basic_streambuf<charT, traits> *sb);

Example

See basic_istream and basic_ostream examples.

See Also

char_traits, ios_base, basic_ios, basic_streambuf, basic_istream, basic_ostream

Standards Conformance

ISO/IEC 14882:1998 -- International Standard for Information Systems --Programming Language C++, Section 27.6.1.5



Previous fileTop of DocumentContentsIndex pageNext file