Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 09:35:21

0001 #ifndef DATE_TIME_DATE_DEFS_HPP
0002 #define DATE_TIME_DATE_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 
0013 namespace boost {
0014 namespace date_time {
0015 
0016   //! An enumeration of weekday names
0017   enum weekdays {Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday};
0018 
0019   //! Simple enum to allow for nice programming with Jan, Feb, etc
0020   enum months_of_year {Jan=1,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec,NotAMonth,NumMonths};
0021 
0022 } } //namespace date_time
0023 
0024 
0025 
0026 #endif