1234567891011121314151617181920212223242526272829 |
- #ifndef DATE_TIME_PARSE_FORMAT_BASE__
- #define DATE_TIME_PARSE_FORMAT_BASE__
- namespace boost {
- namespace date_time {
-
- enum month_format_spec {month_as_integer, month_as_short_string,
- month_as_long_string};
-
-
- enum ymd_order_spec {ymd_order_iso,
- ymd_order_dmy,
- ymd_order_us};
- } }
- #endif
|