Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.15 KB

streambuf-typedefs.md

File metadata and controls

39 lines (26 loc) · 1.15 KB
description title ms.date f1_keywords ms.assetid
Learn more about: <streambuf> typedefs
<streambuf> typedefs
11/04/2016
iosfwd/std::streambuf
iosfwd/std::wstreambuf
2678e18f-f0f0-4995-bc53-f1bc7dfc4ec6

<streambuf> typedefs

streambuf
wstreambuf

streambuf

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 class template basic_streambuf, specialized for elements of type char with default character traits.

wstreambuf

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 class template basic_streambuf, specialized for elements of type wchar_t with default character traits.

See also

<streambuf>