Mercurial > hg > vamp-build-and-test
comparison DEPENDENCIES/generic/include/boost/date_time/date_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_DATE_DEFS_HPP | |
2 #define DATE_TIME_DATE_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 | |
13 namespace boost { | |
14 namespace date_time { | |
15 | |
16 //! An enumeration of weekday names | |
17 enum weekdays {Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday}; | |
18 | |
19 //! Simple enum to allow for nice programming with Jan, Feb, etc | |
20 enum months_of_year {Jan=1,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec,NotAMonth,NumMonths}; | |
21 | |
22 } } //namespace date_time | |
23 | |
24 | |
25 | |
26 #endif |