abi_prefix.hpp 698 B

12345678910111213141516171819202122232425
  1. // abi_prefix header -------------------------------------------------------//
  2. // (c) Copyright John Maddock 2003
  3. // Use, modification and distribution are subject to the Boost Software License,
  4. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  5. // http://www.boost.org/LICENSE_1_0.txt).
  6. #ifndef BOOST_CONFIG_ABI_PREFIX_HPP
  7. # define BOOST_CONFIG_ABI_PREFIX_HPP
  8. #else
  9. # error double inclusion of header boost/config/abi_prefix.hpp is an error
  10. #endif
  11. #include <boost/config.hpp>
  12. // this must occur after all other includes and before any code appears:
  13. #ifdef BOOST_HAS_ABI_HEADERS
  14. # include BOOST_ABI_PREFIX
  15. #endif
  16. #if defined( __BORLANDC__ )
  17. #pragma nopushoptwarn
  18. #endif