Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class template simple_format

boost::date_time::simple_format — Class to provide simple basic formatting rules.

Synopsis

// In header: <boost/date_time/date_format_simple.hpp>

template<typename charT> 
class simple_format {
public:

  // public static functions
  const charT * ();
  const charT * ();
  const charT * ();
   ();
   ();
  bool ();
  charT ();
  charT ();
  charT ();
  charT ();
  charT ();
  charT ();
};

Description

simple_format public static functions

  1. const charT * ();
    String used printed is date is invalid.
  2. const charT * ();
    String used to for positive infinity value.
  3. const charT * ();
    String used to for positive infinity value.
  4.  ();
    Describe month format.
  5.  ();
  6. bool ();
    This format uses '-' to separate date elements.
  7. charT ();
    Char to sep?
  8. charT ();
    char between year-month
  9. charT ();
    Char to separate month-day.
  10. charT ();
    char between date-hours
  11. charT ();
    char between hour and minute
  12. charT ();
    char for second

Specializations


PrevUpHomeNext