Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

Class iso_format_base<wchar_t>

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

Synopsis

class iso_format_base<wchar_t> {
public:

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

Description

iso_format_base public static functions

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

PrevUpHomeNext