1 2 #ifndef BOOST_CONTRACT_TEST_LIB_X_HPP_ 3 #define BOOST_CONTRACT_TEST_LIB_X_HPP_ 4 5 // Copyright (C) 2008-2018 Lorenzo Caminiti 6 // Distributed under the Boost Software License, Version 1.0 (see accompanying 7 // file LICENSE_1_0.txt or a copy at http://www.boost.org/LICENSE_1_0.txt). 8 // See: http://www.boost.org/doc/libs/release/libs/contract/doc/html/index.html 9 10 #include <boost/config.hpp> 11 #include <string> 12 13 #ifdef BOOST_CONTRACT_TEST_LIB_X_DYN_LINK 14 #ifdef BOOST_CONTRACT_TEST_LIB_X_SOURCE 15 #define BOOST_CONTRACT_TEST_LIB_X_DECLSPEC BOOST_SYMBOL_EXPORT 16 #else 17 #define BOOST_CONTRACT_TEST_LIB_X_DECLSPEC BOOST_SYMBOL_IMPORT 18 #endif 19 #else 20 #define BOOST_CONTRACT_TEST_LIB_X_DECLSPEC /* nothing */ 21 #endif 22 23 #define BOOST_CONTRACT_TEST_DETAIL_OUT_DECLSPEC \ 24 BOOST_CONTRACT_TEST_LIB_X_DECLSPEC 25 #include "../detail/out.hpp" 26 27 void BOOST_CONTRACT_TEST_LIB_X_DECLSPEC x(); 28 29 #endif 30 31