greg_duration_types.hpp 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #ifndef GREG_DURATION_TYPES_HPP___
  2. #define GREG_DURATION_TYPES_HPP___
  3. /* Copyright (c) 2004 CrystalClear Software, Inc.
  4. * Subject to Boost Software License, Version 1.0. (See accompanying
  5. * file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
  6. * Author: Jeff Garland, Bart Garst
  7. * $Date$
  8. */
  9. #include <boost/date_time/compiler_config.hpp>
  10. #include <boost/date_time/gregorian/greg_date.hpp>
  11. #include <boost/date_time/int_adapter.hpp>
  12. #include <boost/date_time/adjust_functors.hpp>
  13. #include <boost/date_time/date_duration_types.hpp>
  14. #include <boost/date_time/gregorian/greg_duration.hpp>
  15. namespace boost {
  16. namespace gregorian {
  17. //! config struct for additional duration types (ie months_duration<> & years_duration<>)
  18. struct BOOST_SYMBOL_VISIBLE greg_durations_config {
  19. typedef date date_type;
  20. typedef date_time::int_adapter<int> int_rep;
  21. typedef date_time::month_functor<date_type> month_adjustor_type;
  22. };
  23. typedef date_time::months_duration<greg_durations_config> months;
  24. typedef date_time::years_duration<greg_durations_config> years;
  25. class BOOST_SYMBOL_VISIBLE weeks_duration : public date_duration {
  26. public:
  27. weeks_duration(duration_rep w)
  28. : date_duration(w * 7) {}
  29. weeks_duration(date_time::special_values sv)
  30. : date_duration(sv) {}
  31. };
  32. typedef weeks_duration weeks;
  33. }} // namespace boost::gregorian
  34. #endif // GREG_DURATION_TYPES_HPP___