Share via


<sstream> typedefs

 

The latest version of this topic can be found at <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 template class 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 template class 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 template class 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 template class 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 template class 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 template class 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 template class 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 template class basic_stringstream, specialized for elements of type wchar_t.

See Also

<sstream>