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 to view this page for the latest version.
PrevUpHomeNext

Class template year_based_generator

boost::date_time::year_based_generator — Base class for all generators that take a year and produce a date.

Synopsis

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

template<typename date_type> 
class year_based_generator {
public:
  // types
  typedef date_type::calendar_type calendar_type;
  typedef calendar_type::year_type year_type;    

  // construct/copy/destruct
  year_based_generator();
  ~year_based_generator();

  // public member functions
  date_type get_date(year_type) const;
  std::string to_string() const;
};

Description

This class is a base class for polymorphic function objects that take a year and produce a concrete date.

year_based_generator public construct/copy/destruct

  1. year_based_generator();
  2. ~year_based_generator();

year_based_generator public member functions

  1. date_type get_date(year_type y) const;
  2. std::string to_string() const;
    Returns a string for use in a POSIX time_zone string.

PrevUpHomeNext