Previous fileTop of DocumentContentsIndex pageNext file
Apache C++ Standard Library Reference Guide

time_put_byname

Library:  Localization


time_put_base time_put_byname time_put locale::facet

Local Index

Members

Summary

A time formatting facet for output, based on named locales

Synopsis

#include <locale>

namespace std {
  template <class charT, class OuputIterator = 
              ostreambuf_iterator<charT> >
  class time_put_byname;
}

Specializations

Description

The class template time_put_byname has the same interface as class template time_put, but is specific to a particular named locale. For a description of the member functions of time_put_byname, see the reference for time_put.

Interface

Constructors

explicit time_put_byname(const char* name, 
                           size_t refs = 0); 

See Also

locale, Facets, time_put, time_get_byname

Standards Conformance

ISO/IEC 14882:1998 -- International Standard for Information Systems -- Programming Language C++, Section 22.2.5.4



Previous fileTop of DocumentContentsIndex pageNext file