Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class template basic_opstream

boost::process::basic_opstream

Synopsis

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

template<typename CharT, typename Traits> 
class basic_opstream : public  {
public:
  // types
  typedef basic_pipe<  ;  
  typedef                        ;  
  typedef                       ;
  typedef             ;   
  typedef             ;   
  typedef             ;   

  // construct/copy/destruct
  ();
  () = ;
  ();
  ();
  ();
   () = ;
   ();
   ();
   ();

  // public member functions
  basic_pipebuf<  () ;
   ();
   ();
   ();
   () ;
   ();
   ();
   ();
   ();
};

Description

Implementation of a write pipe stream.

basic_opstream public construct/copy/destruct

  1. ();
    Default constructor.
  2. () = ;
    Copy constructor.
  3. ( lhs);
    Move constructor.
  4. ( p);
    Move construct from a pipe.
  5. ( p);
    Copy construct from a pipe.
  6.  () = ;
    Copy assignment.
  7.  ( lhs);
    Move assignment.
  8.  ( p);
    Move assignment of a pipe.
  9.  ( p);
    Copy assignment of a pipe.

basic_opstream public member functions

  1. basic_pipebuf<  () ;
    Get access to the underlying stream_buf.
  2.  ( p);
    Set the pipe of the streambuf.
  3.  ( p);
    Set the pipe of the streambuf.
  4.  ();
    Get a reference to the pipe.
  5.  () ;
    Get a const reference to the pipe.
  6.  ();
    Get a rvalue reference to the pipe. Qualified as rvalue.
  7.  ();
    Open a new pipe.
  8.  ( name);
    Open a new named pipe.
  9.  ();
    Flush the buffer & close the pipe.

PrevUpHomeNext