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

Class template day_calc_dst_rule

boost::date_time::day_calc_dst_rule —

Canonical form for a class that provides day rule calculation.

Synopsis

template<typename spec> 
class day_calc_dst_rule
  :  : public boost::date_time::dst_day_calc_rule< spec::date_type >
{
public:
  // types
  typedef spec::date_type      date_type; 
  typedef date_type::year_type year_type; 
  typedef spec::start_rule     start_rule;
  typedef spec::end_rule       end_rule;  

  // construct/copy/destruct
  day_calc_dst_rule(start_rule, end_rule);

  // public member functions
  virtual date_type start_day(year_type) const;
  virtual date_type end_day(year_type) const;
};

Description

This class is used to generate specific sets of dst rules

day_calc_dst_rule construct/copy/destruct

  1. day_calc_dst_rule(start_rule dst_start, end_rule dst_end);

day_calc_dst_rule public member functions

  1. virtual date_type start_day(year_type y) const;
  2. virtual date_type end_day(year_type y) const;
Copyright © 2001-2004 CrystalClear Software, Inc

PrevUpHomeNext