The template class reference_wrapper is included in the header <functional> and is used as a wrapper around or wrapper into a container.
Namespace std::tr1 { template <class T> class reference_wrapper template <class T> reference_wrapper<T> ref(T& t) template <class T> reference_wrapper<const T> cref(const T& t) }