![]() |
|
|
Generated: 24 Nov 2008 |
00001 #ifndef GAUDI_DATAINCIDENT_H 00002 #define GAUDI_DATAINCIDENT_H 00003 00004 // Include files 00005 #include "GaudiKernel/Incident.h" 00006 #include <string> 00007 00008 // Forward declarations 00009 00018 class DataIncident : public Incident { 00019 public: 00021 00027 DataIncident(const std::string& source, 00028 const std::string& type, 00029 const std::string& tag) 00030 : Incident(source, type), m_tag(tag) 00031 { 00032 } 00033 00035 virtual ~DataIncident() { } 00036 00038 const std::string& tag() const { return m_tag; } 00039 private: 00040 std::string m_tag; 00041 }; 00042 #endif //GAUDI_DATAINCIDENT_H 00043