gregorian_calendar.hpp 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #ifndef DATE_TIME_GREGORIAN_CALENDAR_HPP__
  2. #define DATE_TIME_GREGORIAN_CALENDAR_HPP__
  3. /* Copyright (c) 2002,2003 CrystalClear Software, Inc.
  4. * Use, modification and distribution is subject to the
  5. * Boost Software License, Version 1.0. (See accompanying
  6. * file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
  7. * Author: Jeff Garland
  8. * $Date: 2008-02-27 15:00:24 -0500 (Wed, 27 Feb 2008) $
  9. */
  10. namespace boost {
  11. namespace date_time {
  12. //! An implementation of the Gregorian calendar
  13. /*! This is a parameterized implementation of a proleptic Gregorian Calendar that
  14. can be used in the creation of date systems or just to perform calculations.
  15. All the methods of this class are static functions, so the intent is to
  16. never create instances of this class.
  17. @param ymd_type_ Struct type representing the year, month, day. The ymd_type must
  18. define a of types for the year, month, and day. These types need to be
  19. arithmetic types.
  20. @param date_int_type_ Underlying type for the date count. Must be an arithmetic type.
  21. */
  22. template<typename ymd_type_, typename date_int_type_>
  23. class gregorian_calendar_base {
  24. public:
  25. //! define a type a date split into components
  26. typedef ymd_type_ ymd_type;
  27. //! define a type for representing months
  28. typedef typename ymd_type::month_type month_type;
  29. //! define a type for representing days
  30. typedef typename ymd_type::day_type day_type;
  31. //! Type to hold a stand alone year value (eg: 2002)
  32. typedef typename ymd_type::year_type year_type;
  33. //! Define the integer type to use for internal calculations
  34. typedef date_int_type_ date_int_type;
  35. static unsigned short day_of_week(const ymd_type& ymd);
  36. static int week_number(const ymd_type&ymd);
  37. //static unsigned short day_of_year(date_int_type);
  38. static date_int_type day_number(const ymd_type& ymd);
  39. static date_int_type julian_day_number(const ymd_type& ymd);
  40. static long modjulian_day_number(const ymd_type& ymd);
  41. static ymd_type from_day_number(date_int_type);
  42. static ymd_type from_julian_day_number(date_int_type);
  43. static ymd_type from_modjulian_day_number(long);
  44. static bool is_leap_year(year_type);
  45. static unsigned short end_of_month_day(year_type y, month_type m);
  46. static ymd_type epoch();
  47. static unsigned short days_in_week();
  48. };
  49. } } //namespace
  50. #ifndef NO_BOOST_DATE_TIME_INLINE
  51. #include "boost/date_time/gregorian_calendar.ipp"
  52. #endif
  53. #endif