Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class template all_date_names_put

boost::date_time::all_date_names_put — A date name output facet that takes an array of char* to define strings.

Synopsis

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

template<typename Config, typename charT = char, 
         typename OutputIterator = charT> > 
class all_date_names_put : public  {
public:
  // types
  typedef OutputIterator             ;         
  typedef          ;        
  typedef        ;      
  typedef  ;

  // construct/copy/destruct
  (const charT *const, const charT *const, 
                     const charT *const, const charT *const, 
                     const charT *const, charT = '-',  = , 
                      = );

  // public member functions
  const charT *const * () ;
  const charT *const * () ;
  const charT *const * () ;
  const charT *const * () ;
  const charT *const * () ;

  // protected member functions
  void (, ) ;
  void (, ) ;
  void (, ) ;
  void (, ) ;
  void (, ) ;
  void () ;
  void () ;
   () ;
   () ;
};

Description

all_date_names_put public construct/copy/destruct

  1. (const charT *const month_short_names, 
                       const charT *const month_long_names, 
                       const charT *const special_value_names, 
                       const charT *const weekday_short_names, 
                       const charT *const weekday_long_names, 
                       charT separator_char = '-',  order_spec = , 
                        month_format = );

all_date_names_put public member functions

  1. const charT *const * () ;
  2. const charT *const * () ;
  3. const charT *const * () ;
  4. const charT *const * () ;
  5. const charT *const * () ;

all_date_names_put protected member functions

  1. void ( oitr,  moy) ;
    Generic facet that takes array of chars.
  2. void ( oitr,  moy) ;
    Long month names.
  3. void 
    ( oitr,  sv) ;
    Special values names.
  4. void ( oitr,  wd) ;
  5. void ( oitr,  wd) ;
  6. void ( oitr) ;
    char between year-month
  7. void ( oitr) ;
    Char to separate month-day.
  8.  () ;
    Set the date ordering.
  9.  () ;
    Set the date ordering.

PrevUpHomeNext