Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  master (77e7e51e)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
ContextIncident< T > Class Template Reference

#include </builds/gaudi/Gaudi/GaudiKernel/include/GaudiKernel/DataIncident.h>

Inheritance diagram for ContextIncident< T >:
Collaboration diagram for ContextIncident< T >:

Public Member Functions

 ContextIncident (std::string src, std::string typ, T tag)
 Initializing Constructor. More...
 
const T & tag () const
 Accesssor to the tag value (CONST) More...
 
- Public Member Functions inherited from Incident
 Incident (const std::string &source, const std::string &type)
 Default Constructor. More...
 
 Incident (const std::string &source, const std::string &type, const EventContext &ctx)
 
virtual ~Incident ()=default
 Destructor. More...
 
const std::stringtype () const
 Access to the incident type. More...
 
const std::stringsource () const
 Access to the source of the incident. More...
 
EventContext context () const
 Access to the EventContext of the source of the incident. More...
 

Private Attributes

m_tag
 

Detailed Description

template<class T>
class ContextIncident< T >

Definition at line 26 of file DataIncident.h.

Constructor & Destructor Documentation

◆ ContextIncident()

template<class T >
ContextIncident< T >::ContextIncident ( std::string  src,
std::string  typ,
tag 
)
inline

Initializing Constructor.

Parameters
source[IN] Incident source (service or algorithm name)
type[IN] Incident type
tag[IN] Incident tag
Returns
Reference to ContextIncident object.

Definition at line 37 of file DataIncident.h.

38  : Incident( std::move( src ), std::move( typ ) ), m_tag( std::move( tag ) ) {}

Member Function Documentation

◆ tag()

template<class T >
const T& ContextIncident< T >::tag ( ) const
inline

Accesssor to the tag value (CONST)

Definition at line 41 of file DataIncident.h.

41 { return m_tag; }

Member Data Documentation

◆ m_tag

template<class T >
T ContextIncident< T >::m_tag
private

Definition at line 27 of file DataIncident.h.


The documentation for this class was generated from the following file:
std::move
T move(T... args)
ContextIncident::m_tag
T m_tag
Definition: DataIncident.h:27
ContextIncident::tag
const T & tag() const
Accesssor to the tag value (CONST)
Definition: DataIncident.h:41
Incident::Incident
Incident(const std::string &source, const std::string &type)
Default Constructor.
Definition: Incident.cpp:15