Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class template basic_ipstream

boost::process::basic_ipstream

Synopsis

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

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

  // construct/copy/destruct
  ();
  (basic_ipstream &) = ;
  (basic_ipstream &&);
  (pipe_type &&);
  (pipe_type &);
  basic_ipstream & (basic_ipstream &) = ;
  basic_ipstream & (basic_ipstream &&);
  basic_ipstream & (pipe_type &&);
  basic_ipstream & (pipe_type &);

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

Description

Implementation of a reading pipe stream.

basic_ipstream public construct/copy/destruct

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

basic_ipstream public member functions

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

PrevUpHomeNext