// (C) Copyright Gennadiy Rozental 2001. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // See http://www.boost.org/libs/test for the library home page. // /// @file /// @brief test tools compatibility header /// /// This file is used to select the test tools implementation and includes all the necessary headers // *************************************************************************** #ifndef BOOST_TEST_TOOLS_HPP_111812GER #define BOOST_TEST_TOOLS_HPP_111812GER #include // brings some compiler configuration like BOOST_PP_VARIADICS #include #include #if defined(BOOST_NO_CXX11_VARIADIC_MACROS) \ || defined(BOOST_NO_CXX11_AUTO_DECLARATIONS) \ || defined(BOOST_NO_CXX11_DECLTYPE) # define BOOST_TEST_MACRO_LIMITED_SUPPORT #endif // Boost.Test // #define BOOST_TEST_NO_OLD_TOOLS #if defined(BOOST_TEST_MACRO_LIMITED_SUPPORT) \ && ( !BOOST_PP_VARIADICS \ || !(__cplusplus >= 201103L) && defined(BOOST_NO_CXX11_VARIADIC_MACROS)) # define BOOST_TEST_NO_NEW_TOOLS #endif // #define BOOST_TEST_TOOLS_UNDER_DEBUGGER // #define BOOST_TEST_TOOLS_DEBUGGABLE #include #ifndef BOOST_TEST_NO_OLD_TOOLS # include # include # include #endif #ifndef BOOST_TEST_NO_NEW_TOOLS # include # include # include # include # include # include # include # include # include # include # include # include #endif #endif // BOOST_TEST_TOOLS_HPP_111812GER