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 for the latest Boost documentation.
PrevUpHomeNext

Struct template hashtable_size_wrapper<DeriveFrom, SizeType, false>

boost::intrusive::hashtable_size_wrapper<DeriveFrom, SizeType, false>

Synopsis

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

template<typename DeriveFrom, typename SizeType> 
struct hashtable_size_wrapper<DeriveFrom, SizeType, false> : public DeriveFrom {
  // types
  typedef unspecified size_traits;        
  typedef size_traits size_traits_const_t;
  typedef size_traits size_traits_t;      

  // construct/copy/destruct
  template<typename Base, typename Arg0, typename Arg1, typename Arg2> 
    hashtable_size_wrapper(BOOST_FWD_REF(Base), BOOST_FWD_REF(Arg0), 
                           BOOST_FWD_REF(Arg1), BOOST_FWD_REF(Arg2));
  hashtable_size_wrapper(hashtable_size_wrapper &&);

  // public member functions
  size_traits priv_size_traits() const;
};

Description

hashtable_size_wrapper public construct/copy/destruct

  1. template<typename Base, typename Arg0, typename Arg1, typename Arg2> 
      hashtable_size_wrapper(BOOST_FWD_REF(Base) base, BOOST_FWD_REF(Arg0) arg0, 
                             BOOST_FWD_REF(Arg1) arg1, BOOST_FWD_REF(Arg2) arg2);
  2. hashtable_size_wrapper(hashtable_size_wrapper && other);

hashtable_size_wrapper public member functions

  1. size_traits priv_size_traits() const;

PrevUpHomeNext