From Jason Turner

[string.streams.overview]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpwxpvtffl/{from.md → to.md} +0 -36
tmp/tmpwxpvtffl/{from.md → to.md} RENAMED
@@ -1,36 +0,0 @@
1
- ### Overview <a id="string.streams.overview">[[string.streams.overview]]</a>
2
-
3
- The header `<sstream>` defines four class templates and eight types that
4
- associate stream buffers with objects of class `basic_string`, as
5
- described in  [[string.classes]].
6
-
7
- ``` cpp
8
- namespace std {
9
- template <class charT, class traits = char_traits<charT>,
10
- class Allocator = allocator<charT> >
11
- class basic_stringbuf;
12
-
13
- typedef basic_stringbuf<char> stringbuf;
14
- typedef basic_stringbuf<wchar_t> wstringbuf;
15
-
16
- template <class charT, class traits = char_traits<charT>,
17
- class Allocator = allocator<charT> >
18
- class basic_istringstream;
19
-
20
- typedef basic_istringstream<char> istringstream;
21
- typedef basic_istringstream<wchar_t> wistringstream;
22
-
23
- template <class charT, class traits = char_traits<charT>,
24
- class Allocator = allocator<charT> >
25
- class basic_ostringstream;
26
- typedef basic_ostringstream<char> ostringstream;
27
- typedef basic_ostringstream<wchar_t> wostringstream;
28
-
29
- template <class charT, class traits = char_traits<charT>,
30
- class Allocator = allocator<charT> >
31
- class basic_stringstream;
32
- typedef basic_stringstream<char> stringstream;
33
- typedef basic_stringstream<wchar_t> wstringstream;
34
- }
35
- ```
36
-