#include <DataFormats/Common/interface/PtrVector.h>
Public Member Functions | |
Ptr< T > const & | operator * () const |
Ptr< T > const * | operator-> () const |
PtrHolder (Ptr< T > const &iPtr) | |
Private Attributes | |
Ptr< T > | ptr_ |
Definition at line 37 of file PtrVector.h.
edm::PtrHolder< T >::PtrHolder | ( | Ptr< T > const & | iPtr | ) | [inline] |
Ptr<T> const& edm::PtrHolder< T >::operator * | ( | ) | const [inline] |
Definition at line 41 of file PtrVector.h.
References edm::PtrHolder< T >::ptr_.
00041 { 00042 return ptr_; 00043 }
Ptr<T> const* edm::PtrHolder< T >::operator-> | ( | ) | const [inline] |
Definition at line 44 of file PtrVector.h.
References edm::PtrHolder< T >::ptr_.
00044 { 00045 return &ptr_; 00046 }
Ptr<T> edm::PtrHolder< T >::ptr_ [private] |
Definition at line 48 of file PtrVector.h.
Referenced by edm::PtrHolder< T >::operator *(), and edm::PtrHolder< T >::operator->().