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

Struct template year_month_day_base

boost::date_time::year_month_day_base — Allow rapid creation of ymd triples of different types.

Synopsis

template<typename YearType, typename MonthType, typename DayType> 
struct year_month_day_base {
  // types
  typedef YearType  year_type; 
  typedef MonthType month_type;
  typedef DayType   day_type;  

  // construct/copy/destruct
  year_month_day_base(YearType, MonthType, DayType);

  // public member functions

  YearType year;
  MonthType month;
  DayType day;
};

Description

year_month_day_base construct/copy/destruct

  1. year_month_day_base(YearType year, MonthType month, DayType day);

year_month_day_base public member functions

    Copyright © 2001-2005 CrystalClear Software, Inc

    PrevUpHomeNext