Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.15 KB

ostream-typedefs.md

File metadata and controls

39 lines (26 loc) · 1.15 KB
description title ms.date f1_keywords ms.assetid
Learn more about: <ostream> typedefs
<ostream> typedefs
11/04/2016
iosfwd/std::ostream
iosfwd/std::wostream
2ec4dc52-a01f-4654-bd65-dd5288777c48

<ostream> typedefs

ostream
wostream

ostream

Creates a type from basic_ostream that is specialized on char and char_traits specialized on char.

typedef basic_ostream<char, char_traits<char>> ostream;

Remarks

The type is a synonym for class template basic_ostream, specialized for elements of type char with default character traits.

wostream

Creates a type from basic_ostream that is specialized on wchar_t and char_traits specialized on wchar_t.

typedef basic_ostream<wchar_t, char_traits<wchar_t>> wostream;

Remarks

The type is a synonym for class template basic_ostream, specialized for elements of type wchar_t with default character traits.

See also

<ostream>