Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:30:38

0001 #ifndef DATE_TIME_PARSE_FORMAT_BASE__
0002 #define DATE_TIME_PARSE_FORMAT_BASE__
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 namespace boost {
0013 namespace date_time {
0014 
0015   //! Enum for distinguishing parsing and formatting options
0016   enum month_format_spec {month_as_integer, month_as_short_string, 
0017                           month_as_long_string};
0018 
0019   //! Enum for distinguishing the order of Month, Day, & Year.
0020   /*! Enum for distinguishing the order in which Month, Day, & Year
0021    * will appear in a date string */
0022   enum ymd_order_spec {ymd_order_iso,  //order is year-month-day
0023                        ymd_order_dmy,  //day-month-year
0024                        ymd_order_us};  //order is month-day-year
0025 
0026 
0027 } }//namespace date_time
0028 
0029 #endif