The Gaudi Framework  master (594c33fa)
PersistencySvc::ServiceEntry Class Referencefinal

#include </builds/gaudi/Gaudi/GaudiCommonSvc/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 62 of file PersistencySvc.h.

Constructor & Destructor Documentation

◆ ServiceEntry() [1/3]

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

Definition at line 69 of file PersistencySvc.h.

70  : m_serviceType( type )
71  , m_service( std::move( svc ) )
72  , m_cnvService( std::move( cnv ) )
73  , m_addrCreator( std::move( cr ) ) {}

◆ ServiceEntry() [2/3]

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

Definition at line 74 of file PersistencySvc.h.

74  {
76  m_addrCreator = cr;
77  m_cnvService = cnv;
78  m_service = svc;
79  }

◆ ServiceEntry() [3/3]

PersistencySvc::ServiceEntry::ServiceEntry ( const ServiceEntry )
default

Member Function Documentation

◆ addrCreator()

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

Definition at line 84 of file PersistencySvc.h.

84 { return m_addrCreator; }

◆ conversionSvc()

SmartIF<IConversionSvc>& PersistencySvc::ServiceEntry::conversionSvc ( ) const
inline

Definition at line 83 of file PersistencySvc.h.

83 { return m_cnvService; }

◆ service()

SmartIF<IService>& PersistencySvc::ServiceEntry::service ( ) const
inline

Definition at line 82 of file PersistencySvc.h.

82 { return m_service; }

◆ svcType()

long PersistencySvc::ServiceEntry::svcType ( ) const
inline

Definition at line 85 of file PersistencySvc.h.

85 { return m_serviceType; }

Member Data Documentation

◆ m_addrCreator

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

Definition at line 66 of file PersistencySvc.h.

◆ m_cnvService

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

Definition at line 65 of file PersistencySvc.h.

◆ m_service

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

Definition at line 64 of file PersistencySvc.h.

◆ m_serviceType

long PersistencySvc::ServiceEntry::m_serviceType
private

Definition at line 63 of file PersistencySvc.h.


The documentation for this class was generated from the following file:
PersistencySvc::ServiceEntry::m_serviceType
long m_serviceType
Definition: PersistencySvc.h:63
std::move
T move(T... args)
PersistencySvc::ServiceEntry::m_cnvService
SmartIF< IConversionSvc > m_cnvService
Definition: PersistencySvc.h:65
PersistencySvc::ServiceEntry::m_addrCreator
SmartIF< IAddressCreator > m_addrCreator
Definition: PersistencySvc.h:66
gaudirun.type
type
Definition: gaudirun.py:160
PersistencySvc::ServiceEntry::m_service
SmartIF< IService > m_service
Definition: PersistencySvc.h:64