fix doc example typo
[boost.git] / boost / date_time / date_defs.hpp
blob6c80db3a83d1d185fd4573bb343358347c25138b
1 #ifndef DATE_TIME_DATE_DEFS_HPP
2 #define DATE_TIME_DATE_DEFS_HPP
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$
13 namespace boost {
14 namespace date_time {
16 //! An enumeration of weekday names
17 enum weekdays {Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday};
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};
22 } } //namespace date_time
26 #endif