CMS 3D CMS Logo

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

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

Detailed Description

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

Definition at line 47 of file PopConSourceHandler.h.

Constructor & Destructor Documentation

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

Definition at line 49 of file PopConSourceHandler.h.

49 : 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 50 of file PopConSourceHandler.h.

References cond::hash.

50  : m_dbsession(dbsession) {
52  }
cond::persistency::Session m_dbsession
std::unique_ptr< T > fetchPayload(const cond::Hash &payloadHash)
Definition: Session.h:224
long double T
template<class T>
popcon::PopConSourceHandler< T >::Ref::~Ref ( )
inline

Definition at line 53 of file PopConSourceHandler.h.

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

Definition at line 55 of file PopConSourceHandler.h.

55 : m_dbsession(ref.m_dbsession), m_d(ref.m_d) {}
cond::persistency::Session m_dbsession

Member Function Documentation

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

Definition at line 67 of file PopConSourceHandler.h.

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

Definition at line 65 of file PopConSourceHandler.h.

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

Definition at line 57 of file PopConSourceHandler.h.

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

57  {
58  m_dbsession = ref.m_dbsession;
59  m_d = ref.m_d;
60  return *this;
61  }
cond::persistency::Session m_dbsession
template<class T>
T const* popcon::PopConSourceHandler< T >::Ref::ptr ( ) const
inline

Definition at line 63 of file PopConSourceHandler.h.

63 { return m_d.get(); }

Member Data Documentation

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