process.hpp 942 B

12345678910111213141516171819202122232425262728293031323334
  1. // Copyright (c) 2006, 2007 Julio M. Merino Vidal
  2. // Copyright (c) 2008 Ilya Sokolov, Boris Schaeling
  3. // Copyright (c) 2009 Boris Schaeling
  4. // Copyright (c) 2010 Felipe Tanus, Boris Schaeling
  5. // Copyright (c) 2011 Jeff Flinn, Boris Schaeling
  6. // Copyright (c) 2012 Boris Schaeling
  7. // Copyright (c) 2016 Klemens D. Morgenstern
  8. //
  9. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  10. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  11. #ifndef BOOST_PROCESS_HPP
  12. #define BOOST_PROCESS_HPP
  13. /**
  14. * \file boost/process.hpp
  15. *
  16. * Convenience header which includes all public and platform-independent
  17. * boost.process header files.
  18. */
  19. #if !defined(BOOST_PROCESS_VERSION)
  20. #define BOOST_PROCESS_VERSION 1
  21. #endif
  22. #if BOOST_PROCESS_VERSION == 1
  23. #include <boost/process/v1.hpp>
  24. #elif BOOST_PROCESS_VERSION == 2
  25. #include <boost/process/v2.hpp>
  26. #else
  27. #error "Unknown boost process version"
  28. #endif
  29. #endif