This is Unofficial EPICS BASE Doxygen Site
boost::detail::sp_reference_wrapper< T > Class Template Reference

#include "shared_count.hpp"

Public Member Functions

 sp_reference_wrapper (T &t)
 
template<class Y >
void operator() (Y *p) const
 

Detailed Description

template<class T>
class boost::detail::sp_reference_wrapper< T >

Definition at line 68 of file shared_count.hpp.

Constructor & Destructor Documentation

template<class T >
boost::detail::sp_reference_wrapper< T >::sp_reference_wrapper ( T &  t)
inlineexplicit

Definition at line 72 of file shared_count.hpp.

72  : t_( boost::addressof( t ) )
73  {
74  }

Member Function Documentation

template<class T >
template<class Y >
void boost::detail::sp_reference_wrapper< T >::operator() ( Y *  p) const
inline

Definition at line 76 of file shared_count.hpp.

77  {
78  (*t_)( p );
79  }

The documentation for this class was generated from the following file: