New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
time_defs.hpp in vendors/XIOS/current/extern/boost/include/boost/date_time – NEMO

source: vendors/XIOS/current/extern/boost/include/boost/date_time/time_defs.hpp @ 3408

Last change on this file since 3408 was 3408, checked in by rblod, 12 years ago

importing initial XIOS vendor drop

  • Property svn:keywords set to Id
File size: 989 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.txt or http://www.boost.org/LICENSE_1_0.txt)
8 * Author: Jeff Garland
9 * $Date: 2008-11-12 14:37:53 -0500 (Wed, 12 Nov 2008) $
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
19namespace boost {
20namespace date_time {
21
22  //!Defines some nice types for handling time level resolutions
23  enum time_resolutions {
24    sec,
25    tenth,
26    hundreth, // deprecated misspelled version of hundredth
27    hundredth = hundreth,
28    milli,
29    ten_thousandth,
30    micro,
31    nano,
32    NumResolutions
33  };
34
35  //! Flags for daylight savings or summer time
36  enum dst_flags {not_dst, is_dst, calculate};
37
38
39} } //namespace date_time
40
41
42
43#endif
Note: See TracBrowser for help on using the repository browser.