12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef DATE_TIME_TIME_PRECISION_LIMITS_HPP
- #define DATE_TIME_TIME_PRECISION_LIMITS_HPP
- namespace boost {
- namespace date_time {
-
- enum time_resolutions {
- sec,
- tenth,
- hundreth,
- hundredth = hundreth,
- milli,
- ten_thousandth,
- micro,
- nano,
- NumResolutions
- };
-
- enum dst_flags {not_dst, is_dst, calculate};
- } }
- #endif
|