Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template year_month_day_base

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

Synopsis

// In header: <boost/date_time/year_month_day.hpp>

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

  // construct/copy/destruct
  (, , );

  // public data members
   year;
   month;
   day;
};

Description

year_month_day_base public construct/copy/destruct

  1. ( year,  month,  day);
    A basic constructor.

PrevUpHomeNext