All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
PersistencySvc::ServiceEntry Class Reference

#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 &copy)
 
virtual ~ServiceEntry ()
 
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 55 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.

64  {
66  m_addrCreator = cr;
67  m_cnvService = cnv;
68  m_service = svc;
69  }
SmartIF< IService > m_service
string type
Definition: gaudirun.py:126
SmartIF< IConversionSvc > m_cnvService
long m_serviceType
SmartIF< IAddressCreator > m_addrCreator
PersistencySvc::ServiceEntry::ServiceEntry ( long  type,
IService svc,
IConversionSvc cnv,
IAddressCreator cr 
)
inline

Definition at line 70 of file PersistencySvc.h.

73  {
75  m_addrCreator = cr;
76  m_cnvService = cnv;
77  m_service = svc;
78  }
SmartIF< IService > m_service
string type
Definition: gaudirun.py:126
SmartIF< IConversionSvc > m_cnvService
long m_serviceType
SmartIF< IAddressCreator > m_addrCreator
PersistencySvc::ServiceEntry::ServiceEntry ( const ServiceEntry copy)
inline

Definition at line 79 of file PersistencySvc.h.

79  {
80  m_serviceType = copy.m_serviceType;
81  m_addrCreator = copy.m_addrCreator;
82  m_cnvService = copy.m_cnvService;
83  m_service = copy.m_service;
84  }
SmartIF< IService > m_service
SmartIF< IConversionSvc > m_cnvService
long m_serviceType
SmartIF< IAddressCreator > m_addrCreator
virtual PersistencySvc::ServiceEntry::~ServiceEntry ( )
inlinevirtual

Definition at line 85 of file PersistencySvc.h.

85  {
86  }

Member Function Documentation

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

Definition at line 93 of file PersistencySvc.h.

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

Definition at line 90 of file PersistencySvc.h.

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

Definition at line 87 of file PersistencySvc.h.

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

Definition at line 96 of file PersistencySvc.h.

96  {
97  return m_serviceType;
98  }
long m_serviceType

Member Data Documentation

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

Definition at line 59 of file PersistencySvc.h.

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

Definition at line 58 of file PersistencySvc.h.

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

Definition at line 57 of file PersistencySvc.h.

long PersistencySvc::ServiceEntry::m_serviceType
private

Definition at line 56 of file PersistencySvc.h.


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