boost_no_iostream.ipp 570 B

12345678910111213141516171819202122232425
  1. // (C) Copyright Peter Dimov 2007.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. // See http://www.boost.org/libs/config for most recent version.
  6. // MACRO: BOOST_NO_IOSTREAM
  7. // TITLE: No iostream support
  8. // DESCRIPTION: The <iostream>, <istream>, <ostream> headers are missing
  9. #include <iostream>
  10. #include <istream>
  11. #include <ostream>
  12. namespace boost_no_iostream
  13. {
  14. int test()
  15. {
  16. return 0;
  17. }
  18. }