C++ Locale Library - time_put_byname



Description

It is a standard facet overrides time_put virtual members to implement its semantics for particular named locales.

Declaration

Following is the declaration for std::time_put_byname.

C++98

	
template <class charT, class OutputIterator = ostreambuf_iterator<charT> >
   class time_put_byname;

C++11

template <class charT, class OutputIterator = ostreambuf_iterator<charT> >
  class time_put_byname;

Parameters

  • charT − It is a character type.

  • OutputIterator − It is an ouptut iterator type.

Return Value

none

locale.htm
Advertisements