#include <locale_facets.h>
Public Types | |
typedef CharT | char_type |
Public typedefs. | |
typedef OutIter | iter_type |
Public typedefs. | |
Public Member Functions | |
time_put (size_t __refs=0) | |
Constructor performs initialization. | |
iter_type | put (iter_type s, ios_base &__io, char_type __fill, const tm *__tm, const CharT *__beg, const CharT *__end) const |
Format and output a time or date. | |
iter_type | put (iter_type s, ios_base &__io, char_type __fill, const tm *__tm, char __format, char __mod=0) const |
Format and output a time or date. | |
Static Public Attributes | |
static locale::id | id |
Numpunct facet id. | |
Protected Member Functions | |
virtual | ~time_put () |
Destructor. | |
virtual iter_type | do_put (iter_type s, ios_base &__io, char_type __fill, const tm *__tm, char __format, char __mod) const |
Format and output a time or date. | |
Static Protected Member Functions | |
static c_locale | S_get_c_locale () |
static const char * | S_get_c_name () |
Friends | |
class | locale::Impl |
This facet encapsulates the code to format and output dates and times according to formats used by strftime().
The time_put template uses protected virtual functions to provide the actual results. The public accessors forward the call to the virtual functions. These virtual functions are hooks for developers to implement the behavior they require from the time_put facet.
Definition at line 3318 of file locale_facets.h.
typedef CharT std::time_put< CharT, OutIter >::char_type |
Public typedefs.
Reimplemented in std::time_put_byname< CharT, OutIter >.
Definition at line 3324 of file locale_facets.h.
typedef OutIter std::time_put< CharT, OutIter >::iter_type |
Public typedefs.
Reimplemented in std::time_put_byname< CharT, OutIter >.
Definition at line 3325 of file locale_facets.h.
std::time_put< CharT, OutIter >::time_put | ( | size_t | __refs = 0 |
) | [inline, explicit] |
Constructor performs initialization.
This is the constructor provided by the standard.
refs | Passed to the base facet class. |
Definition at line 3339 of file locale_facets.h.
virtual std::time_put< CharT, OutIter >::~time_put | ( | ) | [inline, protected, virtual] |
OutIter std::time_put< CharT, OutIter >::put | ( | iter_type | s, | |
ios_base & | __io, | |||
char_type | __fill, | |||
const tm * | __tm, | |||
const CharT * | __beg, | |||
const CharT * | __end | |||
) | const [inline] |
Format and output a time or date.
This function formats the data in struct tm according to the provided format string. The format string is interpreted as by strftime().
s | The stream to write to. | |
io | Source of locale. | |
fill | char_type to use for padding. | |
tm | Struct tm with date and time info to format. | |
beg | Start of format string. | |
end | End of format string. |
Definition at line 2196 of file locale_facets.tcc.
References std::time_put< CharT, OutIter >::do_put(), and std::ctype_abstract_base< CharT >::narrow().
iter_type std::time_put< CharT, OutIter >::put | ( | iter_type | s, | |
ios_base & | __io, | |||
char_type | __fill, | |||
const tm * | __tm, | |||
char | __format, | |||
char | __mod = 0 | |||
) | const [inline] |
Format and output a time or date.
This function formats the data in struct tm according to the provided format char and optional modifier. The format and modifier are interpreted as by strftime(). It does so by returning time_put::do_put().
s | The stream to write to. | |
io | Source of locale. | |
fill | char_type to use for padding. | |
tm | Struct tm with date and time info to format. | |
format | Format char. | |
mod | Optional modifier char. |
Definition at line 3378 of file locale_facets.h.
OutIter std::time_put< CharT, OutIter >::do_put | ( | iter_type | s, | |
ios_base & | __io, | |||
char_type | __fill, | |||
const tm * | __tm, | |||
char | __format, | |||
char | __mod | |||
) | const [inline, protected, virtual] |
Format and output a time or date.
This function formats the data in struct tm according to the provided format char and optional modifier. This function is a hook for derived classes to change the value returned.
s | The stream to write to. | |
io | Source of locale. | |
fill | char_type to use for padding. | |
tm | Struct tm with date and time info to format. | |
format | Format char. | |
mod | Optional modifier char. |
Definition at line 2231 of file locale_facets.tcc.
References std::__write(), and std::ctype_abstract_base< CharT >::widen().
Referenced by std::time_put< CharT, OutIter >::put().
locale::id std::time_put< CharT, OutIter >::id [inline, static] |