ServiceHistory.h
Go to the documentation of this file.
1 #ifndef GAUDIKERNEL_SERVICEHISTORY_H
2 #define GAUDIKERNEL_SERVICEHISTORY_H
3 
6 
7 #include <string>
8 #include <vector>
9 
10 class IService;
11 class Property;
12 class JobHistory;
13 
23 
24 public:
26  ServiceHistory(const IService*, const JobHistory* ) ;
27  ServiceHistory(const IService&, const JobHistory* ) ;
28 
29  virtual ~ServiceHistory() = default;
30 
31  // Class IDs
32  virtual const CLID& clID() const { return classID(); }
33  static const CLID& classID();
34 
35  // Return the service properties.
36  const PropertyList& properties() const { return m_properties; }
37 
38  const IService* service() const { return m_pService; }
39 
40  const JobHistory* jobHistory() const { return m_jobHistory; }
41 
42  void dump(std::ostream &, const bool isXML=false, int indent=0) const;
43 
44  const std::string& name() const { return m_name; }
45  const std::string& type() const { return m_type; }
46  const std::string& version() const { return m_version; }
47 
48 
49 private:
50 
53  std::string m_name,m_type,m_version;
55 
56 };
57 
58 // Output stream.
60 
61 #endif
const std::string & name() const
static const CLID & classID()
Definition: HistoryObj.cpp:50
virtual void dump(std::ostream &, const bool isXML=false, int indent=0) const =0
List of properties.
Definition: PropertyList.h:16
Base class for History Objects.
Definition: HistoryObj.h:22
JobHistory class definition.
Definition: JobHistory.h:24
PropertyList m_properties
GAUDI_API std::ostream & operator<<(std::ostream &lhs, const ServiceHistory &rhs)
const IService * service() const
STL class.
unsigned char m_version
Version number.
Definition: DataObject.h:35
const std::string & version() const
General service interface definition.
Definition: IService.h:18
const std::string & type() const
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
Property base class allowing Property* collections to be "homogeneous".
Definition: Property.h:38
const JobHistory * jobHistory() const
const PropertyList & properties() const
const JobHistory * m_jobHistory
std::string m_version
ServiceHistory class definition.
Interface for Versioned History Objects.
virtual const CLID & clID() const
Retrieve reference to class definition structure.
#define GAUDI_API
Definition: Kernel.h:107
const IService * m_pService
STL class.