Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-25 09:37:27

0001 #ifndef GREG_DAY_OF_YEAR_HPP___
0002 #define GREG_DAY_OF_YEAR_HPP___
0003 
0004 /* Copyright (c) 2002,2003 CrystalClear Software, Inc.
0005  * Use, modification and distribution is subject to the 
0006  * Boost Software License, Version 1.0. (See accompanying
0007  * file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
0008  * Author: Jeff Garland 
0009  * $Date$
0010  */
0011 
0012 #include <boost/date_time/constrained_value.hpp>
0013 #include <boost/date_time/compiler_config.hpp>
0014 #include <stdexcept>
0015 #include <string>
0016 
0017 namespace boost {
0018 namespace gregorian {
0019 
0020   //! Exception type for day of year (1..366)
0021   struct BOOST_SYMBOL_VISIBLE bad_day_of_year : public std::out_of_range
0022   {
0023     bad_day_of_year() : 
0024       std::out_of_range(std::string("Day of year value is out of range 1..366")) 
0025     {}
0026   };
0027 
0028   //! A day of the year range (1..366)
0029   typedef CV::simple_exception_policy<unsigned short,1,366,bad_day_of_year> greg_day_of_year_policies;
0030 
0031   //! Define a range representation type for the day of the year 1..366
0032   typedef CV::constrained_value<greg_day_of_year_policies> greg_day_of_year_rep;
0033 
0034 
0035 } } //namespace gregorian
0036 
0037 
0038 
0039 #endif