Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class named_pipe

boost::process::behavior::named_pipe

Synopsis

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


class named_pipe {
public:
  // construct/copy/destruct
  named_pipe(const std::string &);

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

Description

Stream behavior to redirect streams with a named pipe.

A child process will be able to communicate with its parent process.

named_pipe public construct/copy/destruct

  1. named_pipe(const std::string & name);

named_pipe public member functions

  1. stream_ends operator()(stream_type stype) const;

PrevUpHomeNext