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

Constructor & Destructor Documentation

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

Definition at line 51 of file PopConSourceHandler.h.

51 : 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 52 of file PopConSourceHandler.h.

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

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

Definition at line 56 of file PopConSourceHandler.h.

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

Definition at line 59 of file PopConSourceHandler.h.

59  :
60  m_dbsession(ref.m_dbsession), m_d(ref.m_d) {
61  }
cond::persistency::Session m_dbsession

Member Function Documentation

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

Definition at line 77 of file PopConSourceHandler.h.

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

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

Definition at line 73 of file PopConSourceHandler.h.

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

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

Definition at line 63 of file PopConSourceHandler.h.

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

63  {
64  m_dbsession = ref.m_dbsession;
65  m_d = ref.m_d;
66  return *this;
67  }
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