CrystalClear Software Home Library Home Documentation Index

PrevUpHomeNext

Class template iso_format_base

boost::date_time::iso_format_base — Class to provide common iso formatting spec.

Synopsis

template<typename charT> 
class iso_format_base {
public:

  // public static functions
  month_format_spec month_format() ;
  const charT * not_a_date() ;
  const charT * pos_infinity() ;
  const charT * neg_infinity() ;
  charT year_sep_char() ;
  charT month_sep_char() ;
  charT day_sep_char() ;
  charT hour_sep_char() ;
  charT minute_sep_char() ;
  charT second_sep_char() ;
  charT period_start_char() ;
  charT time_start_char() ;
  charT week_start_char() ;
  charT period_sep_char() ;
  charT time_sep_char() ;
  charT fractional_time_sep_char() ;
  bool is_component_sep(charT) ;
  bool is_fractional_time_sep(charT) ;
  bool is_timezone_sep(charT) ;
  charT element_sep_char() ;
};

Description

iso_format_base public static functions

  1. month_format_spec month_format() ;
  2. const charT * not_a_date() ;
  3. const charT * pos_infinity() ;
  4. const charT * neg_infinity() ;
  5. charT year_sep_char() ;
  6. charT month_sep_char() ;
  7. charT day_sep_char() ;
  8. charT hour_sep_char() ;
  9. charT minute_sep_char() ;
  10. charT second_sep_char() ;
  11. charT period_start_char() ;
  12. charT time_start_char() ;
  13. charT week_start_char() ;
  14. charT period_sep_char() ;
  15. charT time_sep_char() ;
  16. charT fractional_time_sep_char() ;
  17. bool is_component_sep(charT sep) ;
  18. bool is_fractional_time_sep(charT sep) ;
  19. bool is_timezone_sep(charT sep) ;
  20. charT element_sep_char() ;
Copyright © 2001-2005 CrystalClear Software, Inc

PrevUpHomeNext