The Gaudi Framework  master (37c0b60a)
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 59 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 66 of file PersistencySvc.h.

67  : m_serviceType( type )
68  , m_service( std::move( svc ) )
69  , m_cnvService( std::move( cnv ) )
70  , m_addrCreator( std::move( cr ) ) {}

◆ ServiceEntry() [2/3]

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

Definition at line 71 of file PersistencySvc.h.

71  {
73  m_addrCreator = cr;
74  m_cnvService = cnv;
75  m_service = svc;
76  }

◆ ServiceEntry() [3/3]

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

Member Function Documentation

◆ addrCreator()

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

Definition at line 81 of file PersistencySvc.h.

81 { return m_addrCreator; }

◆ conversionSvc()

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

Definition at line 80 of file PersistencySvc.h.

80 { return m_cnvService; }

◆ service()

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

Definition at line 79 of file PersistencySvc.h.

79 { return m_service; }

◆ svcType()

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

Definition at line 82 of file PersistencySvc.h.

82 { return m_serviceType; }

Member Data Documentation

◆ m_addrCreator

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

Definition at line 63 of file PersistencySvc.h.

◆ m_cnvService

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

Definition at line 62 of file PersistencySvc.h.

◆ m_service

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

Definition at line 61 of file PersistencySvc.h.

◆ m_serviceType

long PersistencySvc::ServiceEntry::m_serviceType
private

Definition at line 60 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:60
std::move
T move(T... args)
PersistencySvc::ServiceEntry::m_cnvService
SmartIF< IConversionSvc > m_cnvService
Definition: PersistencySvc.h:62
PersistencySvc::ServiceEntry::m_addrCreator
SmartIF< IAddressCreator > m_addrCreator
Definition: PersistencySvc.h:63
gaudirun.type
type
Definition: gaudirun.py:160
PersistencySvc::ServiceEntry::m_service
SmartIF< IService > m_service
Definition: PersistencySvc.h:61