ian@0
|
1 //
|
ian@0
|
2 // Boost.Process
|
ian@0
|
3 // ~~~~~~~~~~~~~
|
ian@0
|
4 //
|
ian@0
|
5 // Copyright (c) 2006, 2007 Julio M. Merino Vidal
|
ian@0
|
6 // Copyright (c) 2008 Ilya Sokolov, Boris Schaeling
|
ian@0
|
7 // Copyright (c) 2009 Boris Schaeling
|
ian@0
|
8 // Copyright (c) 2010 Felipe Tanus, Boris Schaeling
|
ian@0
|
9 //
|
ian@0
|
10 // Distributed under the Boost Software License, Version 1.0. (See accompanying
|
ian@0
|
11 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
ian@0
|
12 //
|
ian@0
|
13
|
ian@0
|
14 /**
|
ian@0
|
15 * \file boost/process/all.hpp
|
ian@0
|
16 *
|
ian@0
|
17 * Convenience header that includes all public Boost.Process header files.
|
ian@0
|
18 */
|
ian@0
|
19
|
ian@0
|
20 #ifndef BOOST_PROCESS_ALL_HPP
|
ian@0
|
21 #define BOOST_PROCESS_ALL_HPP
|
ian@0
|
22
|
ian@0
|
23 #include <boost/process/child.hpp>
|
ian@0
|
24 #include <boost/process/context.hpp>
|
ian@0
|
25 #include <boost/process/environment.hpp>
|
ian@0
|
26 #include <boost/process/handle.hpp>
|
ian@0
|
27 #include <boost/process/operations.hpp>
|
ian@0
|
28 #include <boost/process/pid_type.hpp>
|
ian@0
|
29 #include <boost/process/pipe.hpp>
|
ian@0
|
30 #include <boost/process/pistream.hpp>
|
ian@0
|
31 #include <boost/process/postream.hpp>
|
ian@0
|
32 #include <boost/process/process.hpp>
|
ian@0
|
33 #include <boost/process/self.hpp>
|
ian@0
|
34 #include <boost/process/status.hpp>
|
ian@0
|
35 #include <boost/process/stream_behavior.hpp>
|
ian@0
|
36 #include <boost/process/stream_ends.hpp>
|
ian@0
|
37 #include <boost/process/stream_id.hpp>
|
ian@0
|
38 #include <boost/process/stream_type.hpp>
|
ian@0
|
39
|
ian@0
|
40 #endif
|