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