source: vendor/nemo/current/NEMOGCM/EXTERNAL/XIOS/extern/boost/include/boost/date_time/parse_format_base.hpp @ 44

Last change on this file since 44 was 44, checked in by cholod, 12 years ago

Load NEMO_TMP into vendor/nemo/current.

File size: 1008 bytes
Line 
1#ifndef DATE_TIME_PARSE_FORMAT_BASE__
2#define DATE_TIME_PARSE_FORMAT_BASE__
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
12namespace boost {
13namespace date_time {
14
15  //! Enum for distinguishing parsing and formatting options
16  enum month_format_spec {month_as_integer, month_as_short_string, 
17                          month_as_long_string};
18
19  //! Enum for distinguishing the order of Month, Day, & Year.
20  /*! Enum for distinguishing the order in which Month, Day, & Year
21   * will appear in a date string */
22  enum ymd_order_spec {ymd_order_iso,  //order is year-month-day
23                       ymd_order_dmy,  //day-month-year
24                       ymd_order_us};  //order is month-day-year
25
26
27} }//namespace date_time
28
29#endif
Note: See TracBrowser for help on using the repository browser.