Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class inherit

boost::process::behavior::inherit

Synopsis

// In header: <boost/process/stream_behavior.hpp>


class inherit {
public:
  // construct/copy/destruct
  inherit(handle::native_type);

  // public member functions
  stream_ends operator()(stream_type) const;
};

Description

Stream behavior to make a child process inherit streams.

A child process will use the very same stream of its parent process.

inherit public construct/copy/destruct

  1. inherit(handle::native_type h);

inherit public member functions

  1. stream_ends operator()(stream_type) const;

PrevUpHomeNext