Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:30:36

0001 #ifndef POSIX_TIME_HPP___
0002 #define POSIX_TIME_HPP___
0003 
0004 /* Copyright (c) 2002-2005 CrystalClear Software, Inc.
0005  * Use, modification and distribution is subject to the 
0006  * Boost Software License, Version 1.0. (See accompanying
0007  * file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
0008  * Author: Jeff Garland, Bart Garst 
0009  * $Date$
0010  */
0011 /*!@file posix_time.hpp Global header file to get all of posix time types 
0012  */
0013 
0014 #include "boost/date_time/compiler_config.hpp"
0015 #include "boost/date_time/posix_time/ptime.hpp"
0016 #if defined(BOOST_DATE_TIME_OPTIONAL_GREGORIAN_TYPES)
0017 #include "boost/date_time/posix_time/date_duration_operators.hpp"
0018 #endif
0019 
0020 // output functions
0021 #if defined(BOOST_DATE_TIME_INCLUDE_LIMITED_HEADERS)
0022 #include "boost/date_time/posix_time/time_formatters_limited.hpp"
0023 #else
0024 #include "boost/date_time/posix_time/time_formatters.hpp"
0025 #endif // BOOST_DATE_TIME_INCLUDE_LIMITED_HEADERS
0026 
0027 // streaming operators
0028 #if defined(USE_DATE_TIME_PRE_1_33_FACET_IO)
0029 #include "boost/date_time/posix_time/posix_time_legacy_io.hpp"
0030 #else
0031 #include "boost/date_time/posix_time/posix_time_io.hpp"
0032 #endif // USE_DATE_TIME_PRE_1_33_FACET_IO
0033 
0034 #include "boost/date_time/posix_time/time_parsers.hpp"
0035 #include "boost/date_time/posix_time/conversion.hpp"
0036 
0037 
0038 #endif
0039