template<class E, class InIt>
class time_get_byname : public time_get<E, InIt> {
public:
explicit time_get_byname(const char *s, size_t refs = 0);
protected:
~time_get_byname();
};
The template class describes an object that can serve as a locale facet of type time_get
<E, InIt>
. Its behavior is
determined by the named locale s
. The constructor initializes its base object with time_get
<E, InIt>(refs)
.