New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
date_defs.hpp in vendors/XIOS/current/extern/boost/include/boost/date_time – NEMO

source: vendors/XIOS/current/extern/boost/include/boost/date_time/date_defs.hpp @ 3428

Last change on this file since 3428 was 3428, checked in by rblod, 12 years ago

importing initial XIOS vendor drop

File size: 748 bytes
Line 
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 15:00:24 -0500 (Wed, 27 Feb 2008) $
10 */
11
12
13namespace boost {
14namespace 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
Note: See TracBrowser for help on using the repository browser.