source: NonGTP/Boost/boost/date_time/posix_time/posix_time.hpp @ 857

Revision 857, 1.3 KB checked in by igarcia, 18 years ago (diff)
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 or http://www.boost.org/LICENSE-1.0)
8 * Author: Jeff Garland, Bart Garst
9 * $Date: 2005/01/30 20:58:52 $
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.