Home | Libraries | People | FAQ | More |
boost::date_time::month_formatter — Formats a month as as string into an ostream.
template<typename month_type, typename format_type, typename charT = char> class month_formatter { public: // public static functions std::basic_ostream< charT > & format_month(const month_type &, std::basic_ostream< charT > &) ; std::ostream & format_month(const month_type &, std::ostream &) ; };
month_formatter
public static functionsstd::basic_ostream< charT > & format_month(const month_type & month, std::basic_ostream< charT > & os) ;
This function demands that month_type provide functions for converting to short and long strings if that capability is used.
std::ostream & format_month(const month_type & month, std::ostream & os) ;
This function demands that month_type provide functions for converting to short and long strings if that capability is used.
Copyright © 2001-2005 CrystalClear Software, Inc |