special_defs.hpp 633 B

12345678910111213141516171819202122232425
  1. #ifndef DATE_TIME_SPECIAL_DEFS_HPP__
  2. #define DATE_TIME_SPECIAL_DEFS_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. namespace boost {
  11. namespace date_time {
  12. enum special_values {not_a_date_time,
  13. neg_infin, pos_infin,
  14. min_date_time, max_date_time,
  15. not_special, NumSpecialValues};
  16. } } //namespace date_time
  17. #endif