/Src/Dependencies/Boost/boost/date_time/locale_config.hpp

http://hadesmem.googlecode.com/ · C++ Header · 31 lines · 10 code · 7 blank · 14 comment · 2 complexity · d71ed3d2ef49cc105007f8637444419e MD5 · raw file

  1. #ifndef DATE_TIME_LOCALE_CONFIG_HPP___
  2. #define DATE_TIME_LOCALE_CONFIG_HPP___
  3. /* Copyright (c) 2002-2006 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
  8. * $Date: 2008-02-28 07:00:24 +1100 (Thu, 28 Feb 2008) $
  9. */
  10. // This file configures whether the library will support locales and hence
  11. // iostream based i/o. Even if a compiler has some support for locales,
  12. // any failure to be compatible gets the compiler on the exclusion list.
  13. //
  14. // At the moment this is defined for MSVC 6 and any compiler that
  15. // defines BOOST_NO_STD_LOCALE (gcc 2.95.x)
  16. #include "boost/config.hpp" //sets BOOST_NO_STD_LOCALE
  17. #include "boost/detail/workaround.hpp"
  18. //This file basically becomes a noop if locales are not properly supported
  19. #if (defined(BOOST_NO_STD_LOCALE) \
  20. || (BOOST_WORKAROUND( BOOST_MSVC, < 1300)) \
  21. || (BOOST_WORKAROUND( __BORLANDC__, BOOST_TESTED_AT( 0x581 )) ) )
  22. #define BOOST_DATE_TIME_NO_LOCALE
  23. #endif
  24. #endif