Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Class template exception_bucket_disposer

boost::intrusive::exception_bucket_disposer

Synopsis

// In header: <boost/intrusive/hashtable.hpp>

template<typename Bucket, typename Algo, typename Disposer, typename SizeType> 
class exception_bucket_disposer {
public:
  // construct/copy/destruct
  exception_bucket_disposer(const exception_bucket_disposer &);
  exception_bucket_disposer(Bucket &, Disposer &, const SizeType &);
  exception_bucket_disposer & operator=(const exception_bucket_disposer &);
  ~exception_bucket_disposer();

  // public member functions
  void release();
};

Description

exception_bucket_disposer public construct/copy/destruct

  1. exception_bucket_disposer(const exception_bucket_disposer &);
  2. exception_bucket_disposer(Bucket & cont, Disposer & disp, 
                              const SizeType & constructed);
  3. exception_bucket_disposer & operator=(const exception_bucket_disposer &);
  4. ~exception_bucket_disposer();

exception_bucket_disposer public member functions

  1. void release();

PrevUpHomeNext