Standard C++ Library Reference ISO/IEC (VERSION3)
basic_stringstream::rdbuf
basic_stringbuf<Elem, Tr, Alloc> *rdbuf() const
The member function returns the address of the stored stream buffer, of type pointer to
basic_stringbuf<Elem, Tr, Alloc>.
basic_stringstream::str
basic_string<Elem, Tr, Alloc> str() const;
void str(const basic_string<Elem, Tr, Alloc>& newstr);
The first member function returns rdbuf()-> str(). The second member function calls
rdbuf()-> str(newstr).
istringstream
typedef basic_istringstream<char> istringstream;
The type is a synonym for template class basic_istringstream, specialized for elements
of type char.
ostringstream
typedef basic_ostringstream<char> ostringstream;
The type is a synonym for template class basic_ostringstream, specialized for elements
of type char.
stringbuf
typedef basic_stringbuf<char> stringbuf;
The type is a synonym for template class basic_stringbuf, specialized for elements of
type char.
stringstream
typedef basic_stringstream<char> stringstream;
The type is a synonym for template class basic_stringstream, specialized for elements
of type char.