#include <DataIncident.h>
Inheritance diagram for ContextIncident< T >:
Public Member Functions | |
| ContextIncident (const std::string &src, const std::string &typ, T tag) | |
| virtual | ~ContextIncident () |
| Standard destructor. | |
| const T & | tag () const |
| Accesssor to the tag value (CONST). | |
| const std::string & | type () const |
| Access to the incident type. | |
| const std::string & | source () const |
| Access to the source of the incident. | |
Private Attributes | |
| T | m_tag |
Definition at line 16 of file DataIncident.h.
| ContextIncident< T >::ContextIncident | ( | const std::string & | src, | |
| const std::string & | typ, | |||
| T | tag | |||
| ) | [inline] |
| source | [IN] Incident source (service or algorithm name) | |
| type | [IN] Incident type | |
| tag | [IN] Incident tag |
Definition at line 25 of file DataIncident.h.
| virtual ContextIncident< T >::~ContextIncident | ( | ) | [inline, virtual] |
| const T& ContextIncident< T >::tag | ( | ) | const [inline] |
Accesssor to the tag value (CONST).
Definition at line 32 of file DataIncident.h.
00032 { return m_tag; }
| const std::string& Incident::type | ( | ) | const [inline, inherited] |
Access to the incident type.
Definition at line 33 of file Incident.h.
00033 { return m_type; }
| const std::string& Incident::source | ( | ) | const [inline, inherited] |
Access to the source of the incident.
Definition at line 39 of file Incident.h.
00039 { return m_source; }
T ContextIncident< T >::m_tag [private] |
Definition at line 35 of file DataIncident.h.
1.4.7