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 to view this page for the latest version.
PrevUpHomeNext

Class greg_month

boost::gregorian::greg_month — Wrapper class to represent months in gregorian based calendar.

Synopsis

class greg_month {
public:
  // types
  typedef date_time::months_of_year               month_enum;        
  typedef std::map< std::string, unsigned short > month_map_type;    
  typedef boost::shared_ptr< month_map_type >     month_map_ptr_type;

  // construct/copy/destruct
  greg_month(month_enum);
  greg_month(unsigned short);

  // public member functions
  operator unsigned short() const;
  unsigned short as_number() const;
  month_enum as_enum() const;
  const char * as_short_string() const;
  const char * as_long_string() const;
  const wchar_t * as_short_wstring() const;
  const wchar_t * as_long_wstring() const;
  const char * as_short_string(char) const;
  const char * as_long_string(char) const;
  const wchar_t * as_short_string(wchar_t) const;
  const wchar_t * as_long_string(wchar_t) const;

  // public static functions
  static month_map_ptr_type get_month_map_ptr() ;
};

Description

greg_month public construct/copy/destruct

  1. greg_month(month_enum theMonth);
  2. greg_month(unsigned short theMonth);

greg_month public member functions

  1. operator unsigned short() const;
  2. unsigned short as_number() const;
  3. month_enum as_enum() const;
  4. const char * as_short_string() const;
  5. const char * as_long_string() const;
  6. const wchar_t * as_short_wstring() const;
  7. const wchar_t * as_long_wstring() const;
  8. const char * as_short_string(char) const;
  9. const char * as_long_string(char) const;
  10. const wchar_t * as_short_string(wchar_t) const;
  11. const wchar_t * as_long_string(wchar_t) const;

greg_month public static functions

  1. static month_map_ptr_type get_month_map_ptr() ;

PrevUpHomeNext