DataIncident.h
Go to the documentation of this file.
1 #ifndef GAUDI_DATAINCIDENT_H
2 #define GAUDI_DATAINCIDENT_H
3 
4 // Include files
5 #include "GaudiKernel/Incident.h"
6 
15 template<class T>
17  T m_tag;
18 public:
20 
27  : Incident(std::move(src),std::move(typ)),m_tag(std::move(tag)) { }
28 
30  ~ContextIncident() override = default;
31 
33  const T& tag() const { return m_tag; }
34 };
35 
38 
39 #endif //GAUDI_DATAINCIDENT_H
ContextIncident< std::string > DataIncident
Specific incident type used by the data-on-demand-service.
Definition: DataIncident.h:37
ContextIncident(std::string src, std::string typ, T tag)
Initializing Constructor.
Definition: DataIncident.h:26
STL namespace.
STL class.
Base class for all Incidents (computing events).
Definition: Incident.h:17
const T & tag() const
Accesssor to the tag value (CONST)
Definition: DataIncident.h:33
#define GAUDI_API
Definition: Kernel.h:107