#include <TrackFunctor.h>
Public Types | |
typedef bool(T::* | ptr_memfun )(unsigned int) const |
Public Member Functions | |
HasKey (ptr_memfun check, unsigned int key) | |
bool | operator() (const T *t) const |
Private Attributes | |
ptr_memfun | m_pmf |
unsigned int | m_key |
|
Definition at line 142 of file TrackFunctor.h. |
|
Definition at line 147 of file TrackFunctor.h. References TrackFunctor::HasKey< T >::m_key, and TrackFunctor::HasKey< T >::m_pmf. 00147 : 00148 m_pmf(check),m_key(key) {} bool operator()( const T* t ) const
|
|
Definition at line 149 of file TrackFunctor.h. References TrackFunctor::HasKey< T >::m_key, and TrackFunctor::HasKey< T >::m_pmf. 00150 { 00151 return (t ->* m_pmf) (m_key); 00152 }
|
|
Definition at line 145 of file TrackFunctor.h. Referenced by TrackFunctor::HasKey< T >::HasKey(), and TrackFunctor::HasKey< T >::operator()(). |
|
Definition at line 144 of file TrackFunctor.h. Referenced by TrackFunctor::HasKey< T >::HasKey(), and TrackFunctor::HasKey< T >::operator()(). |