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 date

boost::gregorian::date —

A date type based on gregorian_calendar.

Synopsis

class date {
public:
  // types
  typedef gregorian_calendar::year_type        year_type;       
  typedef gregorian_calendar::month_type       month_type;      
  typedef gregorian_calendar::day_type         day_type;        
  typedef gregorian_calendar::day_of_year_type day_of_year_type;
  typedef gregorian_calendar::ymd_type         ymd_type;        
  typedef gregorian_calendar::date_rep_type    date_rep_type;   
  typedef gregorian_calendar::date_int_type    date_int_type;   
  typedef date_duration                        duration_type;   

  // construct/copy/destruct
  date();
  date(year_type, month_type, day_type);
  date(const ymd_type &);
  date(const date_int_type &);
  date(date_rep_type);
  date(special_values);

  // public member functions
  date_int_type julian_day() const;
  day_of_year_type day_of_year() const;
  long modjulian_day() const;
  int week_number() const;
  date_int_type day_number() const;
};

Description

This class is the primary interface for programming with greogorian dates. The is a lightweight type that can be freely passed by value. All comparison operators are supported.

date construct/copy/destruct

  1. date();

    Default constructor constructs with not_a_date_time.

  2. date(year_type y, month_type m, day_type d);

    Main constructor with year, month, day.

  3. date(const ymd_type & ymd);

    Constructor from a ymd_type structure.

  4. date(const date_int_type & rhs);

    Needed copy constructor.

  5. date(date_rep_type rhs);

    Needed copy constructor.

  6. date(special_values sv);

    Constructor for infinities, not a date, max and min date.

date public member functions

  1. date_int_type julian_day() const;

    Return the Julian Day number for the date.

  2. day_of_year_type day_of_year() const;

    Return the day of year 1..365 or 1..366 (for leap year).

  3. long modjulian_day() const;

    Return the Modified Julian Day number for the date.

  4. int week_number() const;

    Return the iso 8601 week number 1..53.

  5. date_int_type day_number() const;

    Return the day number from the calendar.

Copyright © 2001-2004 CrystalClear Software, Inc

PrevUpHomeNext