Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class impl

boost::process::handle::impl

Synopsis

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



class impl {
public:
  // types
  typedef handle::native_type native_type;

  // construct/copy/destruct
  impl(native_type, close_type);
  ~impl();

  // public member functions
  bool valid() const;
  void close() ;
  native_type native() const;
  native_type release() ;
};

Description

impl public construct/copy/destruct

  1. impl(native_type native, close_type close);
  2. ~impl();

impl public member functions

  1. bool valid() const;
  2. void close() ;
  3. native_type native() const;
  4. native_type release() ;

PrevUpHomeNext