all.hpp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. //Copyright (c) 2006-2008 Emil Dotchevski and Reverge Studios, Inc.
  2. //Distributed under the Boost Software License, Version 1.0. (See accompanying
  3. //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #ifndef UUID_316FDA946C0D11DEA9CBAE5255D89593
  5. #define UUID_316FDA946C0D11DEA9CBAE5255D89593
  6. #if defined(__GNUC__) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
  7. #pragma GCC system_header
  8. #endif
  9. #if defined(_MSC_VER) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
  10. #pragma warning(push,1)
  11. #endif
  12. #include <boost/exception/diagnostic_information.hpp>
  13. #include <boost/exception/error_info.hpp>
  14. #include <boost/exception/exception.hpp>
  15. #include <boost/exception/get_error_info.hpp>
  16. #include <boost/exception/info.hpp>
  17. #include <boost/exception/info_tuple.hpp>
  18. #include <boost/exception/errinfo_api_function.hpp>
  19. #include <boost/exception/errinfo_at_line.hpp>
  20. #include <boost/exception/errinfo_errno.hpp>
  21. #include <boost/exception/errinfo_file_handle.hpp>
  22. #include <boost/exception/errinfo_file_name.hpp>
  23. #include <boost/exception/errinfo_file_open_mode.hpp>
  24. #include <boost/exception/errinfo_type_info_name.hpp>
  25. #ifndef BOOST_NO_EXCEPTIONS
  26. #include <boost/exception/errinfo_nested_exception.hpp>
  27. #include <boost/exception_ptr.hpp>
  28. #endif
  29. #if defined(_MSC_VER) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
  30. #pragma warning(pop)
  31. #endif
  32. #endif