CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
popcon::PopConSourceHandler< T >::Ref Class Reference

#include <PopConSourceHandler.h>

Public Member Functions

T const & operator* () const
 
T const * operator-> () const
 
Refoperator= (const Ref &ref)
 
T const * ptr () const
 
 Ref ()
 
 Ref (cond::persistency::Session &dbsession, const std::string &hash)
 
 Ref (const Ref &ref)
 
 ~Ref ()
 

Private Attributes

boost::shared_ptr< Tm_d
 
cond::persistency::Session m_dbsession
 

Detailed Description

template<class T>
class popcon::PopConSourceHandler< T >::Ref

Definition at line 54 of file PopConSourceHandler.h.

Constructor & Destructor Documentation

template<class T>
popcon::PopConSourceHandler< T >::Ref::Ref ( )
inline

Definition at line 56 of file PopConSourceHandler.h.

56 : m_dbsession(){}
cond::persistency::Session m_dbsession
template<class T>
popcon::PopConSourceHandler< T >::Ref::Ref ( cond::persistency::Session dbsession,
const std::string &  hash 
)
inline

Definition at line 57 of file PopConSourceHandler.h.

References cond::persistency::Session::fetchPayload(), cond::hash, popcon::PopConSourceHandler< T >::Ref::m_d, and popcon::PopConSourceHandler< T >::Ref::m_dbsession.

57  :
58  m_dbsession(dbsession){
60  }
cond::persistency::Session m_dbsession
boost::shared_ptr< T > fetchPayload(const cond::Hash &payloadHash)
Definition: Session.h:215
long double T
template<class T>
popcon::PopConSourceHandler< T >::Ref::~Ref ( )
inline

Definition at line 61 of file PopConSourceHandler.h.

61  {
62  }
template<class T>
popcon::PopConSourceHandler< T >::Ref::Ref ( const Ref ref)
inline

Definition at line 64 of file PopConSourceHandler.h.

64  :
65  m_dbsession(ref.m_dbsession), m_d(ref.m_d) {
66  }
cond::persistency::Session m_dbsession

Member Function Documentation

template<class T>
T const& popcon::PopConSourceHandler< T >::Ref::operator* ( ) const
inline

Definition at line 82 of file PopConSourceHandler.h.

References popcon::PopConSourceHandler< T >::Ref::ptr().

82  {
83  return *ptr();
84  }
template<class T>
T const* popcon::PopConSourceHandler< T >::Ref::operator-> ( ) const
inline

Definition at line 78 of file PopConSourceHandler.h.

References popcon::PopConSourceHandler< T >::Ref::ptr().

78  {
79  return ptr();
80  }
template<class T>
Ref& popcon::PopConSourceHandler< T >::Ref::operator= ( const Ref ref)
inline

Definition at line 68 of file PopConSourceHandler.h.

References popcon::PopConSourceHandler< T >::Ref::m_d, and popcon::PopConSourceHandler< T >::Ref::m_dbsession.

68  {
69  m_dbsession = ref.m_dbsession;
70  m_d = ref.m_d;
71  return *this;
72  }
cond::persistency::Session m_dbsession
template<class T>
T const* popcon::PopConSourceHandler< T >::Ref::ptr ( ) const
inline

Member Data Documentation

template<class T>
boost::shared_ptr<T> popcon::PopConSourceHandler< T >::Ref::m_d
private
template<class T>
cond::persistency::Session popcon::PopConSourceHandler< T >::Ref::m_dbsession
private