Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class template deleter

boost::interprocess::deleter

Synopsis

// In header: <boost/interprocess/smart_ptr/deleter.hpp>

template<typename T, typename SegmentManager> 
class deleter {
public:
  // types
  typedef  ;

  // construct/copy/destruct
  () ;

  // public member functions
   ();
};

Description

A deleter that uses the segment manager's destroy_ptr function to destroy the passed pointer resource.

This deleter is used

deleter public construct/copy/destruct

  1. ( pmngr) ;

deleter public member functions

  1.  ( p);

PrevUpHomeNext