C++ Locale Library - time_get



Description

It is a standard facet parses sequences of characters to read date and time information and stores it into a tm structure.

Declaration

Following is the declaration for std::time_get.

C++98

	
template <class charT, class InputIterator = istreambuf_iterator<charT> >
   class time_get;

C++11

template <class charT, class InputIterator = istreambuf_iterator<charT> >
   class time_get;

Parameters

  • charT − It is a character type.

  • InputIterator − It is an input iterator type.

Return Value

none

locale.htm
Advertisements