Standard C++ Library Reference ISO/IEC (VERSION3)
Next
<ostream>
namespace std {
template<class Elem, class Tr = char_traits<Elem> >
class basic_ostream;
typedef basic_ostream<char, char_traits<char> >
ostream;
typedef basic_ostream<wchar_t, char_traits<wchar_t> >
wostream;
// INSERTERS
template<class Elem, class Tr>
basic_ostream<Elem, Tr>&
operator<<(basic_ostream<Elem, Tr>& ostr,
const Elem *str);
template<class Elem, class Tr>
basic_ostream<Elem, Tr>&
operator<<(basic_ostream<Elem, Tr>& ostr,
Elem ch);
template<class Elem, class Tr>
basic_ostream<Elem, Tr>&
operator<<(basic_ostream<Elem, Tr>& ostr,
const char *str);
template<class Elem, class Tr>
basic_ostream<Elem, Tr>&
operator<<(basic_ostream<Elem, Tr>& ostr,
char ch);
template<class Tr>
basic_ostream<char, Tr>&
operator<<(basic_ostream<char, Tr>& ostr,
const char *str);
template<class Tr>
basic_ostream<char, Tr>&
operator<<(basic_ostream<char, Tr>& ostr,
char ch);
template<class Tr>
basic_ostream<char, Tr>&
operator<<(basic_ostream<char, Tr>& ostr,
const signed char *str);
template<class Tr>