C++ Locale Library - time_put



Description

It is a standard facet is used to format the date and time information contained in a tm structure into a sequence of characters.

Declaration

Following is the declaration for std::time_put.

C++98

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

C++11

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

Parameters

  • charT − It is a character type.

  • OutputIterator − It is an ouptut iterator type.

Return Value

none

locale.htm
Advertisements