tmp/tmps6cnggtq/{from.md → to.md}
RENAMED
|
@@ -1,18 +1,18 @@
|
|
| 1 |
#### Class template `time_put_byname` <a id="locale.time.put.byname">[[locale.time.put.byname]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
namespace std {
|
| 5 |
template<class charT, class OutputIterator = ostreambuf_iterator<charT>>
|
| 6 |
-
|
| 7 |
-
{
|
| 8 |
public:
|
| 9 |
using char_type = charT;
|
| 10 |
using iter_type = OutputIterator;
|
| 11 |
|
| 12 |
explicit time_put_byname(const char*, size_t refs = 0);
|
| 13 |
explicit time_put_byname(const string&, size_t refs = 0);
|
|
|
|
| 14 |
protected:
|
| 15 |
~time_put_byname();
|
| 16 |
};
|
| 17 |
}
|
| 18 |
```
|
|
|
|
| 1 |
#### Class template `time_put_byname` <a id="locale.time.put.byname">[[locale.time.put.byname]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
namespace std {
|
| 5 |
template<class charT, class OutputIterator = ostreambuf_iterator<charT>>
|
| 6 |
+
class time_put_byname : public time_put<charT, OutputIterator> {
|
|
|
|
| 7 |
public:
|
| 8 |
using char_type = charT;
|
| 9 |
using iter_type = OutputIterator;
|
| 10 |
|
| 11 |
explicit time_put_byname(const char*, size_t refs = 0);
|
| 12 |
explicit time_put_byname(const string&, size_t refs = 0);
|
| 13 |
+
|
| 14 |
protected:
|
| 15 |
~time_put_byname();
|
| 16 |
};
|
| 17 |
}
|
| 18 |
```
|