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

Reference

Header <boost/ref.hpp>

Header <boost/ref.hpp>

namespace boost {
  template<typename T> class reference_wrapper;
  reference_wrapper<T> ref(T&);
  reference_wrapper<T const> cref(T const&);
  unwrap_reference<T>::type& unwrap_ref(T&);
  template<typename T> class is_reference_wrapper;
  template<typename T> class unwrap_reference;
}

PrevUpHomeNext