comparison DEPENDENCIES/generic/include/boost/date_time/special_defs.hpp @ 16:2665513ce2d3

Add boost headers
author Chris Cannam
date Tue, 05 Aug 2014 11:11:38 +0100
parents
children c530137014c0
comparison
equal deleted inserted replaced
15:663ca0da4350 16:2665513ce2d3
1 #ifndef DATE_TIME_SPECIAL_DEFS_HPP__
2 #define DATE_TIME_SPECIAL_DEFS_HPP__
3
4 /* Copyright (c) 2002,2003 CrystalClear Software, Inc.
5 * Use, modification and distribution is subject to the
6 * Boost Software License, Version 1.0. (See accompanying
7 * file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
8 * Author: Jeff Garland
9 * $Date: 2008-02-27 12:00:24 -0800 (Wed, 27 Feb 2008) $
10 */
11
12 namespace boost {
13 namespace date_time {
14
15 enum special_values {not_a_date_time,
16 neg_infin, pos_infin,
17 min_date_time, max_date_time,
18 not_special, NumSpecialValues};
19
20
21 } } //namespace date_time
22
23
24 #endif
25