<sstream> typedefs
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at <sstream> typedefs.
istringstream](#istringstream)|ostringstream|stringbuf|
|stringstream|wistringstream|wostringstream|
|wstringbuf|wstringstream|
Creates a type basic_istringstream specialized on a char template parameter.
typedef basic_istringstream<char> istringstream;
Remarks
The type is a synonym for template class basic_istringstream, specialized for elements of type char.
Creates a type basic_ostringstream specialized on a char template parameter.
typedef basic_ostringstream<char> ostringstream;
Remarks
The type is a synonym for template class basic_ostringstream, specialized for elements of type char.
Creates a type basic_stringbuf specialized on a char template parameter.
typedef basic_stringbuf<char> stringbuf;
Remarks
The type is a synonym for template class basic_stringbuf, specialized for elements of type char.
Creates a type basic_stringstream specialized on a char template parameter.
typedef basic_stringstream<char> stringstream;
Remarks
The type is a synonym for template class basic_stringstream, specialized for elements of type char.
Creates a type basic_istringstream specialized on a wchar_t template parameter.
typedef basic_istringstream<wchar_t> wistringstream;
Remarks
The type is a synonym for template class basic_istringstream, specialized for elements of type wchar_t.
Creates a type basic_ostringstream specialized on a wchar_t template parameter.
typedef basic_ostringstream<wchar_t> wostringstream;
Remarks
The type is a synonym for template class basic_ostringstream, specialized for elements of type wchar_t.
Creates a type basic_stringbuf specialized on a wchar_t template parameter.
typedef basic_stringbuf<wchar_t> wstringbuf;
Remarks
The type is a synonym for template class basic_stringbuf, specialized for elements of type wchar_t.
Creates a type basic_stringstream specialized on a wchar_t template parameter.
typedef basic_stringstream<wchar_t> wstringstream;
Remarks
The type is a synonym for template class basic_stringstream, specialized for elements of type wchar_t.