greg_year.hpp 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #ifndef GREG_YEAR_HPP___
  2. #define GREG_YEAR_HPP___
  3. /* Copyright (c) 2002,2003 CrystalClear Software, Inc.
  4. * Use, modification and distribution is subject to the
  5. * Boost Software License, Version 1.0. (See accompanying
  6. * file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
  7. * Author: Jeff Garland
  8. * $Date$
  9. */
  10. #include <boost/date_time/compiler_config.hpp>
  11. #include <boost/date_time/constrained_value.hpp>
  12. #include <stdexcept>
  13. #include <string>
  14. namespace boost {
  15. namespace gregorian {
  16. //! Exception type for gregorian year
  17. struct BOOST_SYMBOL_VISIBLE bad_year : public std::out_of_range
  18. {
  19. bad_year() :
  20. std::out_of_range(std::string("Year is out of valid range: 1400..9999"))
  21. {}
  22. };
  23. //! Policy class that declares error handling gregorian year type
  24. typedef CV::simple_exception_policy<unsigned short, 1400, 9999, bad_year> greg_year_policies;
  25. //! Generated representation for gregorian year
  26. typedef CV::constrained_value<greg_year_policies> greg_year_rep;
  27. //! Represent a year (range 1400 - 9999)
  28. /*! This small class allows for simple conversion an integer value into
  29. a year for the gregorian calendar. This currently only allows a
  30. range of 1400 to 9999. Both ends of the range are a bit arbitrary
  31. at the moment, but they are the limits of current testing of the
  32. library. As such they may be increased in the future.
  33. */
  34. class BOOST_SYMBOL_VISIBLE greg_year : public greg_year_rep {
  35. public:
  36. greg_year(value_type year) : greg_year_rep(year) {}
  37. operator value_type() const {return value_;}
  38. };
  39. } } //namespace gregorian
  40. #endif