abi_suffix.hpp 781 B

123456789101112131415161718192021222324252627
  1. // abi_sufffix 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. // This header should be #included AFTER code that was preceded by a #include
  7. // <boost/config/abi_prefix.hpp>.
  8. #ifndef BOOST_CONFIG_ABI_PREFIX_HPP
  9. # error Header boost/config/abi_suffix.hpp must only be used after boost/config/abi_prefix.hpp
  10. #else
  11. # undef BOOST_CONFIG_ABI_PREFIX_HPP
  12. #endif
  13. // the suffix header occurs after all of our code:
  14. #ifdef BOOST_HAS_ABI_HEADERS
  15. # include BOOST_ABI_SUFFIX
  16. #endif
  17. #if defined( __BORLANDC__ )
  18. #pragma nopushoptwarn
  19. #endif