The Gaudi Framework  v30r3 (a5ef0a68)
PersistencySvc::ServiceEntry Class Referencefinal

#include <src/PersistencySvc/PersistencySvc.h>

Collaboration diagram for PersistencySvc::ServiceEntry:

Public Member Functions

 ServiceEntry (long type, SmartIF< IService > svc, SmartIF< IConversionSvc > cnv, SmartIF< IAddressCreator > cr)
 
 ServiceEntry (long type, IService *svc, IConversionSvc *cnv, IAddressCreator *cr)
 
 ServiceEntry (const ServiceEntry &)=default
 
SmartIF< IService > & service () const
 
SmartIF< IConversionSvc > & conversionSvc () const
 
SmartIF< IAddressCreator > & addrCreator () const
 
long svcType () const
 

Private Attributes

long m_serviceType
 
SmartIF< IServicem_service
 
SmartIF< IConversionSvcm_cnvService
 
SmartIF< IAddressCreatorm_addrCreator
 

Detailed Description

Definition at line 53 of file PersistencySvc.h.

Constructor & Destructor Documentation

PersistencySvc::ServiceEntry::ServiceEntry ( long  type,
SmartIF< IService svc,
SmartIF< IConversionSvc cnv,
SmartIF< IAddressCreator cr 
)
inline

Definition at line 61 of file PersistencySvc.h.

62  : m_serviceType( type )
63  , m_service( std::move( svc ) )
64  , m_cnvService( std::move( cnv ) )
65  , m_addrCreator( std::move( cr ) )
66  {
67  }
SmartIF< IService > m_service
SmartIF< IConversionSvc > m_cnvService
T move(T...args)
long m_serviceType
SmartIF< IAddressCreator > m_addrCreator
PersistencySvc::ServiceEntry::ServiceEntry ( long  type,
IService svc,
IConversionSvc cnv,
IAddressCreator cr 
)
inline

Definition at line 68 of file PersistencySvc.h.

69  {
71  m_addrCreator = cr;
72  m_cnvService = cnv;
73  m_service = svc;
74  }
SmartIF< IService > m_service
SmartIF< IConversionSvc > m_cnvService
long m_serviceType
SmartIF< IAddressCreator > m_addrCreator
PersistencySvc::ServiceEntry::ServiceEntry ( const ServiceEntry )
default

Member Function Documentation

SmartIF<IAddressCreator>& PersistencySvc::ServiceEntry::addrCreator ( ) const
inline

Definition at line 79 of file PersistencySvc.h.

79 { return m_addrCreator; }
SmartIF< IAddressCreator > m_addrCreator
SmartIF<IConversionSvc>& PersistencySvc::ServiceEntry::conversionSvc ( ) const
inline

Definition at line 78 of file PersistencySvc.h.

78 { return m_cnvService; }
SmartIF< IConversionSvc > m_cnvService
SmartIF<IService>& PersistencySvc::ServiceEntry::service ( ) const
inline

Definition at line 77 of file PersistencySvc.h.

77 { return m_service; }
SmartIF< IService > m_service
long PersistencySvc::ServiceEntry::svcType ( ) const
inline

Definition at line 80 of file PersistencySvc.h.

Member Data Documentation

SmartIF<IAddressCreator> PersistencySvc::ServiceEntry::m_addrCreator
mutableprivate

Definition at line 58 of file PersistencySvc.h.

SmartIF<IConversionSvc> PersistencySvc::ServiceEntry::m_cnvService
mutableprivate

Definition at line 57 of file PersistencySvc.h.

SmartIF<IService> PersistencySvc::ServiceEntry::m_service
mutableprivate

Definition at line 56 of file PersistencySvc.h.

long PersistencySvc::ServiceEntry::m_serviceType
private

Definition at line 55 of file PersistencySvc.h.


The documentation for this class was generated from the following file: