PrevUpHomeNext

Struct pipe

boost::process::pipe

Synopsis

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


struct pipe {
  // construct/copy/destruct
  pipe(pipe_end_type, pipe_end_type);

  // public data members
  pipe_end_type source;
  pipe_end_type sink;
};

Description

Represents a pipe.

pipe public construct/copy/destruct

  1. pipe(pipe_end_type source, pipe_end_type sink);

    Constructor.

pipe public public data members

  1. pipe_end_type source;

    Read-end.

  2. pipe_end_type sink;

    Write-end.


PrevUpHomeNext