definitions.hpp 941 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // Copyright (c) 2009-2011 Artyom Beilis (Tonkikh)
  3. //
  4. // Distributed under the Boost Software License, Version 1.0. (See
  5. // accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. //
  8. #ifndef BOOST_LOCALE_DEFINITIONS_HPP_INCLUDED
  9. #define BOOST_LOCALE_DEFINITIONS_HPP_INCLUDED
  10. #include <boost/config.hpp>
  11. // Support older ICU versions
  12. #ifndef BOOST_SYMBOL_VISIBLE
  13. # define BOOST_SYMBOL_VISIBLE
  14. #endif
  15. #ifdef BOOST_HAS_DECLSPEC
  16. # if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_LOCALE_DYN_LINK)
  17. # ifdef BOOST_LOCALE_SOURCE
  18. # define BOOST_LOCALE_DECL BOOST_SYMBOL_EXPORT
  19. # else
  20. # define BOOST_LOCALE_DECL BOOST_SYMBOL_IMPORT
  21. # endif // BOOST_LOCALE_SOURCE
  22. # endif // DYN_LINK
  23. #endif // BOOST_HAS_DECLSPEC
  24. #ifndef BOOST_LOCALE_DECL
  25. # define BOOST_LOCALE_DECL
  26. #endif
  27. #endif // boost/locale/config.hpp
  28. // vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4