Skip to content

Latest commit

 

History

History
116 lines (73 loc) · 3.56 KB

sstream-typedefs.md

File metadata and controls

116 lines (73 loc) · 3.56 KB
description title ms.date f1_keywords
Learn more about: <sstream> typedefs
<sstream> typedefs
11/04/2016
iosfwd/std::istringstream
iosfwd/std::ostringstream
iosfwd/std::stringbuf
iosfwd/std::stringstream
iosfwd/std::wistringstream
iosfwd/std::wostringstream
iosfwd/std::wstringbuf
iosfwd/std::wstringstream

<sstream> typedefs

istringstream
ostringstream
stringbuf
stringstream
wistringstream
wostringstream
wstringbuf
wstringstream

istringstream

Creates a type basic_istringstream specialized on a char template parameter.

typedef basic_istringstream<char> istringstream;

Remarks

The type is a synonym for class template basic_istringstream, specialized for elements of type char.

ostringstream

Creates a type basic_ostringstream specialized on a char template parameter.

typedef basic_ostringstream<char> ostringstream;

Remarks

The type is a synonym for class template basic_ostringstream, specialized for elements of type char.

stringbuf

Creates a type basic_stringbuf specialized on a char template parameter.

typedef basic_stringbuf<char> stringbuf;

Remarks

The type is a synonym for class template basic_stringbuf, specialized for elements of type char.

stringstream

Creates a type basic_stringstream specialized on a char template parameter.

typedef basic_stringstream<char> stringstream;

Remarks

The type is a synonym for class template basic_stringstream, specialized for elements of type char.

wistringstream

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 class template basic_istringstream, specialized for elements of type wchar_t.

wostringstream

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 class template basic_ostringstream, specialized for elements of type wchar_t.

wstringbuf

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 class template basic_stringbuf, specialized for elements of type wchar_t.

wstringstream

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 class template basic_stringstream, specialized for elements of type wchar_t.

See also

<sstream>