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 an older version of Boost and was released in 2013. The current version is 1.91.0.
boost::date_time::day_functor —
Functor to iterate a fixed number of days.
template<typename date_type> class day_functor { public:   // types   typedef date_type::duration_type duration_type;   // construct/copy/destruct   day_functor(int);   // public member functions   duration_type get_offset(const date_type &) const;   duration_type get_neg_offset(const date_type &) const; };
| Copyright © 2001-2004 CrystalClear Software, Inc |