out.hpp 698 B

1234567891011121314151617181920212223
  1. #ifndef BOOST_CONTRACT_TEST_DETAIL_OUT_HPP_
  2. #define BOOST_CONTRACT_TEST_DETAIL_OUT_HPP_
  3. // Copyright (C) 2008-2018 Lorenzo Caminiti
  4. // Distributed under the Boost Software License, Version 1.0 (see accompanying
  5. // file LICENSE_1_0.txt or a copy at http://www.boost.org/LICENSE_1_0.txt).
  6. // See: http://www.boost.org/doc/libs/release/libs/contract/doc/html/index.html
  7. // To declare test string functions across shared libraries.
  8. #include <string>
  9. namespace boost { namespace contract { namespace test { namespace detail {
  10. std::string BOOST_CONTRACT_TEST_DETAIL_OUT_DECLSPEC out();
  11. void BOOST_CONTRACT_TEST_DETAIL_OUT_DECLSPEC out(std::string const& text);
  12. } } } }
  13. #endif // #include guard