namespace std {
template <class charT, class OutputIterator =
ostreambuf_iterator<charT> >
class time_put_byname
: public time_put<charT, OutputIterator>
{
public:
typedef charT char_type;
typedef OutputIterator iter_type;
explicit time_put_byname(const char* std_name, size_t refs = 0);
protected:
virtual ~time_put_byname();
};
}