The Gaudi Framework  v31r0 (aeb156f0)
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 49 of file IIncidentSvc.h.

Constructor & Destructor Documentation

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

Definition at line 53 of file IIncidentSvc.h.

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

Definition at line 59 of file IIncidentSvc.h.

59 {};

Member Function Documentation

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

Definition at line 54 of file IIncidentSvc.h.

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

Member Data Documentation

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

Definition at line 51 of file IIncidentSvc.h.

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

Definition at line 52 of file IIncidentSvc.h.


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