comparison third_party/boost/process/all.hpp @ 0:add35537fdbb tip

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