posix_time.hpp 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. #ifndef POSIX_TIME_HPP___
  2. #define POSIX_TIME_HPP___
  3. /* Copyright (c) 2002-2005 CrystalClear Software, Inc.
  4. * Use, modification and distribution is subject to the
  5. * Boost Software License, Version 1.0. (See accompanying
  6. * file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
  7. * Author: Jeff Garland, Bart Garst
  8. * $Date$
  9. */
  10. /*!@file posix_time.hpp Global header file to get all of posix time types
  11. */
  12. #include "boost/date_time/compiler_config.hpp"
  13. #include "boost/date_time/posix_time/ptime.hpp"
  14. #if defined(BOOST_DATE_TIME_OPTIONAL_GREGORIAN_TYPES)
  15. #include "boost/date_time/posix_time/date_duration_operators.hpp"
  16. #endif
  17. // output functions
  18. #if defined(BOOST_DATE_TIME_INCLUDE_LIMITED_HEADERS)
  19. #include "boost/date_time/posix_time/time_formatters_limited.hpp"
  20. #else
  21. #include "boost/date_time/posix_time/time_formatters.hpp"
  22. #endif // BOOST_DATE_TIME_INCLUDE_LIMITED_HEADERS
  23. // streaming operators
  24. #if defined(USE_DATE_TIME_PRE_1_33_FACET_IO)
  25. #include "boost/date_time/posix_time/posix_time_legacy_io.hpp"
  26. #else
  27. #include "boost/date_time/posix_time/posix_time_io.hpp"
  28. #endif // USE_DATE_TIME_PRE_1_33_FACET_IO
  29. #include "boost/date_time/posix_time/time_parsers.hpp"
  30. #include "boost/date_time/posix_time/conversion.hpp"
  31. #endif