|
Gaudi Framework, version v22r1 |
| Home | Generated: Mon Feb 28 2011 |
ServiceHistory class definition. More...
#include <ServiceHistory.h>


Public Types | |
| typedef std::vector< Property * > | PropertyList |
Public Member Functions | |
| ServiceHistory () | |
| ServiceHistory (const IService *, const JobHistory *) | |
| ServiceHistory (const IService &, const JobHistory *) | |
| virtual | ~ServiceHistory () |
| virtual const CLID & | clID () const |
| Retrieve reference to class definition structure. | |
| const PropertyList & | properties () const |
| std::string | name () const |
| Retreive DataObject name. It is the name when registered in the store. | |
| std::string | type () const |
| const IService * | service () const |
| const JobHistory * | jobHistory () const |
Static Public Member Functions | |
| static const CLID & | classID () |
| Retrieve reference to class definition structure (static access) | |
Private Attributes | |
| const IService * | m_pService |
| const JobHistory * | m_jobHistory |
| std::string | m_name |
| std::string | m_type |
| PropertyList | m_properties |
ServiceHistory class definition.
Definition at line 23 of file ServiceHistory.h.
| typedef std::vector<Property*> ServiceHistory::PropertyList |
Definition at line 28 of file ServiceHistory.h.
| ServiceHistory::ServiceHistory | ( | ) |
Definition at line 27 of file ServiceHistory.cpp.
: // HistoryObj(), m_pService(0), m_name("none"), m_type("none") { }
| ServiceHistory::ServiceHistory | ( | const IService * | isv, |
| const JobHistory * | job | ||
| ) |
Definition at line 38 of file ServiceHistory.cpp.
: // HistoryObj(), m_pService(isv), m_jobHistory(job), m_name(isv->name()) { const Service *svc = dynamic_cast<const Service*>(isv); m_type = System::typeinfoName(typeid(*svc)); m_properties = svc->getProperties(); }
| ServiceHistory::ServiceHistory | ( | const IService & | isv, |
| const JobHistory * | job | ||
| ) |
Definition at line 54 of file ServiceHistory.cpp.
: // HistoryObj(), m_pService(&isv), m_jobHistory(job), m_name(isv.name()) { const Service *svc = dynamic_cast<const Service*>(&isv); m_type = System::typeinfoName(typeid(*svc)); m_properties = svc->getProperties(); }
| ServiceHistory::~ServiceHistory | ( | ) | [virtual] |
Definition at line 69 of file ServiceHistory.cpp.
{
}
| const CLID & ServiceHistory::classID | ( | ) | [static] |
Retrieve reference to class definition structure (static access)
Retrieve Pointer to class definition structure.
Reimplemented from HistoryObj.
Definition at line 75 of file ServiceHistory.cpp.
{
static CLID CLID_ServiceHistory = 187225489; // from `clid ServiceHistory`
return CLID_ServiceHistory;
}
| virtual const CLID& ServiceHistory::clID | ( | ) | const [inline, virtual] |
Retrieve reference to class definition structure.
Retrieve Pointer to class definition structure.
Reimplemented from HistoryObj.
Definition at line 38 of file ServiceHistory.h.
{ return classID(); }
| const JobHistory* ServiceHistory::jobHistory | ( | ) | const [inline] |
Definition at line 48 of file ServiceHistory.h.
{ return m_jobHistory; }
| std::string ServiceHistory::name | ( | ) | const [inline] |
Retreive DataObject name. It is the name when registered in the store.
Retrieve DataObject name. It is the name when included in the store.
Reimplemented from DataObject.
Definition at line 44 of file ServiceHistory.h.
{ return m_name; }
| const PropertyList& ServiceHistory::properties | ( | ) | const [inline] |
Definition at line 42 of file ServiceHistory.h.
{ return m_properties; }
| const IService* ServiceHistory::service | ( | ) | const [inline] |
Definition at line 46 of file ServiceHistory.h.
{ return m_pService; }
| std::string ServiceHistory::type | ( | ) | const [inline] |
Definition at line 45 of file ServiceHistory.h.
{ return m_type; }
const JobHistory* ServiceHistory::m_jobHistory [private] |
Definition at line 53 of file ServiceHistory.h.
std::string ServiceHistory::m_name [private] |
Definition at line 54 of file ServiceHistory.h.
PropertyList ServiceHistory::m_properties [private] |
Definition at line 55 of file ServiceHistory.h.
const IService* ServiceHistory::m_pService [private] |
Definition at line 52 of file ServiceHistory.h.
std::string ServiceHistory::m_type [private] |
Definition at line 54 of file ServiceHistory.h.