123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- #ifndef BOOST_PROCESS_POSIX_HPP_
- #define BOOST_PROCESS_POSIX_HPP_
- #include <boost/process/v1/detail/posix/fd.hpp>
- #include <boost/process/v1/detail/posix/handler.hpp>
- #include <boost/process/v1/detail/posix/use_vfork.hpp>
- #include <boost/process/v1/detail/posix/signal.hpp>
- namespace boost { namespace process { BOOST_PROCESS_V1_INLINE namespace v1 {
- namespace posix {
- constexpr ::boost::process::v1::detail::posix::fd_ fd;
- constexpr ::boost::process::v1::detail::posix::sig_ sig;
- constexpr ::boost::process::v1::detail::posix::use_vfork_ use_vfork;
- using ::boost::process::v1::detail::posix::sighandler_t;
- }}}}
- #endif
|