![]() |
|
|
Generated: 8 Jan 2009 |
#include <PersistencySvc.h>

Definition at line 61 of file PersistencySvc.h.
Public Member Functions | |
| ServiceEntry (long type, IService *svc, IConversionSvc *cnv, IAddressCreator *cr) | |
| ServiceEntry (const ServiceEntry ©) | |
| virtual | ~ServiceEntry () |
| IService * | service () const |
| IConversionSvc * | conversionSvc () const |
| IAddressCreator * | addrCreator () const |
| long | svcType () const |
Private Attributes | |
| long | m_serviceType |
| IService * | m_service |
| IConversionSvc * | m_cnvService |
| IAddressCreator * | m_addrCreator |
| PersistencySvc::ServiceEntry::ServiceEntry | ( | long | type, | |
| IService * | svc, | |||
| IConversionSvc * | cnv, | |||
| IAddressCreator * | cr | |||
| ) | [inline] |
Definition at line 67 of file PersistencySvc.h.
00070 { 00071 m_serviceType = type; 00072 m_addrCreator = cr; 00073 m_cnvService = cnv; 00074 m_service = svc; 00075 }
| PersistencySvc::ServiceEntry::ServiceEntry | ( | const ServiceEntry & | copy | ) | [inline] |
Definition at line 76 of file PersistencySvc.h.
00076 { 00077 m_serviceType = copy.m_serviceType; 00078 m_addrCreator = copy.m_addrCreator; 00079 m_cnvService = copy.m_cnvService; 00080 m_service = copy.m_service; 00081 }
| virtual PersistencySvc::ServiceEntry::~ServiceEntry | ( | ) | [inline, virtual] |
| IService* PersistencySvc::ServiceEntry::service | ( | ) | const [inline] |
| IConversionSvc* PersistencySvc::ServiceEntry::conversionSvc | ( | ) | const [inline] |
| IAddressCreator* PersistencySvc::ServiceEntry::addrCreator | ( | ) | const [inline] |
| long PersistencySvc::ServiceEntry::svcType | ( | ) | const [inline] |
long PersistencySvc::ServiceEntry::m_serviceType [private] |
Definition at line 62 of file PersistencySvc.h.
IService* PersistencySvc::ServiceEntry::m_service [private] |
Definition at line 63 of file PersistencySvc.h.
Definition at line 64 of file PersistencySvc.h.
Definition at line 65 of file PersistencySvc.h.