Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:30:39

0001 #ifndef DATE_TIME_SPECIAL_DEFS_HPP__
0002 #define DATE_TIME_SPECIAL_DEFS_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 namespace boost {
0013 namespace date_time {
0014 
0015     enum special_values {not_a_date_time, 
0016                          neg_infin, pos_infin, 
0017                          min_date_time,  max_date_time,
0018                          not_special, NumSpecialValues};
0019 
0020 
0021 } } //namespace date_time
0022 
0023 
0024 #endif
0025