• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 
2 #ifndef BOOST_CONTRACT_TEST_DETAIL_OUT_HPP_
3 #define BOOST_CONTRACT_TEST_DETAIL_OUT_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 // To declare test string functions across shared libraries.
11 
12 #include <string>
13 
14 namespace boost { namespace contract { namespace test { namespace detail {
15 
16 std::string BOOST_CONTRACT_TEST_DETAIL_OUT_DECLSPEC out();
17 
18 void BOOST_CONTRACT_TEST_DETAIL_OUT_DECLSPEC out(std::string const& text);
19 
20 } } } }
21 
22 #endif // #include guard
23 
24