<streambuf> typedefs
Visual Studio 2015
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 <streambuf> typedefs.
streambuf](#streambuf)|wstreambuf|
A specialization of basic_streambuf that uses char as the template parameters.
typedef basic_streambuf<char, char_traits<char>> streambuf;
Remarks
The type is a synonym for the template class basic_streambuf, specialized for elements of type char with default character traits.
A specialization of basic_streambuf that uses wchar_t as the template parameters.
typedef basic_streambuf<wchar_t, char_traits<wchar_t>> wstreambuf;
Remarks
The type is a synonym for the template class basic_streambuf, specialized for elements of type wchar_t with default character traits.
Show: