IIncidentSvc::IncidentPack Class Reference

#include <GaudiKernel/IIncidentSvc.h>

Collaboration diagram for IIncidentSvc::IncidentPack:

Public Member Functions

 IncidentPack (IncidentPack &&o)
 
IncidentPackoperator= (IncidentPack &&o)
 
 IncidentPack ()
 

Public Attributes

std::vector< std::unique_ptr< Incident > > incidents
 
std::vector< std::vector< IIncidentListener * > > listeners
 

Detailed Description

Definition at line 54 of file IIncidentSvc.h.

Constructor & Destructor Documentation

IIncidentSvc::IncidentPack::IncidentPack ( IncidentPack &&  o)
inline

Definition at line 58 of file IIncidentSvc.h.

58 :incidents(std::move(o.incidents)),listeners(std::move(o.listeners)){};
std::vector< std::unique_ptr< Incident > > incidents
Definition: IIncidentSvc.h:56
std::vector< std::vector< IIncidentListener * > > listeners
Definition: IIncidentSvc.h:57
T move(T...args)
IIncidentSvc::IncidentPack::IncidentPack ( )
inline

Definition at line 60 of file IIncidentSvc.h.

60 {};

Member Function Documentation

IncidentPack& IIncidentSvc::IncidentPack::operator= ( IncidentPack &&  o)
inline

Definition at line 59 of file IIncidentSvc.h.

59 {incidents=std::move(o.incidents);listeners=std::move(o.listeners);return *this;};
std::vector< std::unique_ptr< Incident > > incidents
Definition: IIncidentSvc.h:56
std::vector< std::vector< IIncidentListener * > > listeners
Definition: IIncidentSvc.h:57
T move(T...args)

Member Data Documentation

std::vector<std::unique_ptr<Incident> > IIncidentSvc::IncidentPack::incidents

Definition at line 56 of file IIncidentSvc.h.

std::vector<std::vector<IIncidentListener*> > IIncidentSvc::IncidentPack::listeners

Definition at line 57 of file IIncidentSvc.h.


The documentation for this class was generated from the following file: