Last change
on this file since 66 was
29,
checked in by landauf, 16 years ago
|
updated boost from 1_33_1 to 1_34_1
|
File size:
849 bytes
|
Line | |
---|
1 | #ifndef DATE_TIME_TIME_PRECISION_LIMITS_HPP |
---|
2 | #define DATE_TIME_TIME_PRECISION_LIMITS_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 or http://www.boost.org/LICENSE-1.0) |
---|
8 | * Author: Jeff Garland |
---|
9 | * $Date: 2003/11/23 03:31:27 $ |
---|
10 | */ |
---|
11 | |
---|
12 | |
---|
13 | |
---|
14 | /*! \file time_defs.hpp |
---|
15 | This file contains nice definitions for handling the resoluion of various time |
---|
16 | reprsentations. |
---|
17 | */ |
---|
18 | |
---|
19 | namespace boost { |
---|
20 | namespace date_time { |
---|
21 | |
---|
22 | //!Defines some nice types for handling time level resolutions |
---|
23 | enum time_resolutions {sec, tenth, hundreth, milli, ten_thousandth, micro, nano, NumResolutions }; |
---|
24 | |
---|
25 | //! Flags for daylight savings or summer time |
---|
26 | enum dst_flags {not_dst, is_dst, calculate}; |
---|
27 | |
---|
28 | |
---|
29 | } } //namespace date_time |
---|
30 | |
---|
31 | |
---|
32 | |
---|
33 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.