// // Boost.Process // ~~~~~~~~~~~~~ // // Copyright (c) 2006, 2007 Julio M. Merino Vidal // Copyright (c) 2008, 2009 Boris Schaeling // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // /** * \file boost/process.hpp * * Convenience header that includes all other Boost.Process public header * files. It is important to note that those headers that are specific to * a given platform are only included if the library is being used in that * same platform. */ #ifndef BOOST_PROCESS_HPP #define BOOST_PROCESS_HPP #include #if defined(BOOST_POSIX_API) # include # include # include # include #elif defined(BOOST_WINDOWS_API) # include # include # include #else # error "Unsupported platform." #endif #include #include #include #include #include #include #include #include #include #include #endif