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.
posix_time.hpp in vendors/XIOS/current/extern/boost/include/boost/date_time/posix_time – NEMO

source: vendors/XIOS/current/extern/boost/include/boost/date_time/posix_time/posix_time.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: 1.3 KB
Line 
1#ifndef POSIX_TIME_HPP___
2#define POSIX_TIME_HPP___
3
4/* Copyright (c) 2002-2005 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, Bart Garst
9 * $Date: 2008-02-27 15:00:24 -0500 (Wed, 27 Feb 2008) $
10 */
11/*!@file posix_time.hpp Global header file to get all of posix time types
12 */
13
14#include "boost/date_time/compiler_config.hpp"
15#include "boost/date_time/posix_time/ptime.hpp"
16#if defined(BOOST_DATE_TIME_OPTIONAL_GREGORIAN_TYPES)
17#include "boost/date_time/posix_time/date_duration_operators.hpp"
18#endif
19
20// output functions
21#if defined(BOOST_DATE_TIME_INCLUDE_LIMITED_HEADERS)
22#include "boost/date_time/posix_time/time_formatters_limited.hpp"
23#else
24#include "boost/date_time/posix_time/time_formatters.hpp"
25#endif // BOOST_DATE_TIME_INCLUDE_LIMITED_HEADERS
26
27// streaming operators
28#if defined(USE_DATE_TIME_PRE_1_33_FACET_IO)
29#include "boost/date_time/posix_time/posix_time_legacy_io.hpp"
30#else
31#include "boost/date_time/posix_time/posix_time_io.hpp"
32#endif // USE_DATE_TIME_PRE_1_33_FACET_IO
33
34#include "boost/date_time/posix_time/time_parsers.hpp"
35#include "boost/date_time/posix_time/conversion.hpp"
36
37
38#endif
39
Note: See TracBrowser for help on using the repository browser.