Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #ifndef GREGORIAN_HPP__
0002 #define GREGORIAN_HPP__
0003 
0004 /* Copyright (c) 2002-2004 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 
0012 /*! @file gregorian.hpp
0013   Single file header that provides overall include for all elements of 
0014   the gregorian date-time system.  This includes the various types 
0015   defined, but also other functions for formatting and parsing.
0016 */
0017 
0018 
0019 #include "boost/date_time/compiler_config.hpp"
0020 #include "boost/date_time/gregorian/gregorian_types.hpp"
0021 #include "boost/date_time/gregorian/conversion.hpp"
0022 #if defined(BOOST_DATE_TIME_INCLUDE_LIMITED_HEADERS)
0023 #include "boost/date_time/gregorian/formatters_limited.hpp"
0024 #else
0025 #include "boost/date_time/gregorian/formatters.hpp"
0026 #endif
0027 
0028 #if defined(USE_DATE_TIME_PRE_1_33_FACET_IO)
0029 #include "boost/date_time/gregorian/greg_facet.hpp"
0030 #else
0031 #include "boost/date_time/gregorian/gregorian_io.hpp"
0032 #endif // USE_DATE_TIME_PRE_1_33_FACET_IO
0033 
0034 #include "boost/date_time/gregorian/parsers.hpp"
0035 
0036 
0037 
0038 #endif