tmp/tmp2o0khxhu/{from.md → to.md}
RENAMED
|
@@ -2,10 +2,11 @@
|
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
#include <ostream> // see [ostream.syn]
|
| 5 |
|
| 6 |
namespace std {
|
|
|
|
| 7 |
template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
|
| 8 |
class basic_syncbuf;
|
| 9 |
|
| 10 |
// [syncstream.syncbuf.special], specialized algorithms
|
| 11 |
template<class charT, class traits, class Allocator>
|
|
@@ -13,10 +14,11 @@ namespace std {
|
|
| 13 |
basic_syncbuf<charT, traits, Allocator>&);
|
| 14 |
|
| 15 |
using syncbuf = basic_syncbuf<char>;
|
| 16 |
using wsyncbuf = basic_syncbuf<wchar_t>;
|
| 17 |
|
|
|
|
| 18 |
template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
|
| 19 |
class basic_osyncstream;
|
| 20 |
|
| 21 |
using osyncstream = basic_osyncstream<char>;
|
| 22 |
using wosyncstream = basic_osyncstream<wchar_t>;
|
|
|
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
#include <ostream> // see [ostream.syn]
|
| 5 |
|
| 6 |
namespace std {
|
| 7 |
+
// [syncstream.syncbuf], class template basic_syncbuf
|
| 8 |
template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
|
| 9 |
class basic_syncbuf;
|
| 10 |
|
| 11 |
// [syncstream.syncbuf.special], specialized algorithms
|
| 12 |
template<class charT, class traits, class Allocator>
|
|
|
|
| 14 |
basic_syncbuf<charT, traits, Allocator>&);
|
| 15 |
|
| 16 |
using syncbuf = basic_syncbuf<char>;
|
| 17 |
using wsyncbuf = basic_syncbuf<wchar_t>;
|
| 18 |
|
| 19 |
+
// [syncstream.osyncstream], class template basic_osyncstream
|
| 20 |
template<class charT, class traits = char_traits<charT>, class Allocator = allocator<charT>>
|
| 21 |
class basic_osyncstream;
|
| 22 |
|
| 23 |
using osyncstream = basic_osyncstream<char>;
|
| 24 |
using wosyncstream = basic_osyncstream<wchar_t>;
|