...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::date_time::first_kday_after — Calculate something like "First Sunday after Jan 1,2002.
// In header: <boost/date_time/date_generators.hpp> template<typename date_type> class first_kday_after { public: // types typedef date_type::calendar_type calendar_type; typedef calendar_type::day_of_week_type day_of_week_type; typedef date_type::duration_type duration_type; // construct/copy/destruct first_kday_after(day_of_week_type); // public member functions date_type get_date(date_type) const; day_of_week_type day_of_week() const; };