annotate third_party/boost/process/status.hpp @ 0:add35537fdbb tip

Initial import
author irh <ian.r.hobson@gmail.com>
date Thu, 25 Aug 2011 11:05:55 +0100
parents
children
rev   line source
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/status.hpp
ian@0 16 *
ian@0 17 * Includes the declaration of the status class.
ian@0 18 */
ian@0 19
ian@0 20 #ifndef BOOST_PROCESS_STATUS_HPP
ian@0 21 #define BOOST_PROCESS_STATUS_HPP
ian@0 22
ian@0 23 #include <boost/process/config.hpp>
ian@0 24 #include <boost/process/detail/basic_status.hpp>
ian@0 25 #include <boost/process/detail/basic_status_service.hpp>
ian@0 26
ian@0 27 namespace boost {
ian@0 28 namespace process {
ian@0 29
ian@0 30 /**
ian@0 31 * The status class to wait for processes to exit.
ian@0 32 *
ian@0 33 * The status class is a Boost.Asio I/O object and supports synchronous
ian@0 34 * and asynchronous wait operations.
ian@0 35 */
ian@0 36 typedef detail::basic_status<detail::basic_status_service<> > status;
ian@0 37
ian@0 38 }
ian@0 39 }
ian@0 40
ian@0 41 #endif