![]() |
![]() |
#include <ESPreFunctorDecorator.h>
Public Member Functions | |
ESPreFunctorDecorator (const TFunctor &iCaller) | |
void | post (const TRecord &) |
void | pre (const TRecord &iRecord) |
Private Member Functions | |
const ESPreFunctorDecorator & | operator= (const ESPreFunctorDecorator &) |
Private Attributes | |
TFunctor | caller_ |
Definition at line 34 of file ESPreFunctorDecorator.h.
edm::eventsetup::ESPreFunctorDecorator< TRecord, TFunctor >::ESPreFunctorDecorator | ( | const TFunctor & | iCaller | ) | [inline] |
Definition at line 38 of file ESPreFunctorDecorator.h.
: caller_(iCaller) {}
const ESPreFunctorDecorator& edm::eventsetup::ESPreFunctorDecorator< TRecord, TFunctor >::operator= | ( | const ESPreFunctorDecorator< TRecord, TFunctor > & | ) | [private] |
void edm::eventsetup::ESPreFunctorDecorator< TRecord, TFunctor >::post | ( | const TRecord & | ) | [inline] |
Definition at line 51 of file ESPreFunctorDecorator.h.
{ }
void edm::eventsetup::ESPreFunctorDecorator< TRecord, TFunctor >::pre | ( | const TRecord & | iRecord | ) | [inline] |
Definition at line 47 of file ESPreFunctorDecorator.h.
References edm::eventsetup::ESPreFunctorDecorator< TRecord, TFunctor >::caller_.
{ caller_(iRecord); }
TFunctor edm::eventsetup::ESPreFunctorDecorator< TRecord, TFunctor >::caller_ [private] |
Definition at line 60 of file ESPreFunctorDecorator.h.
Referenced by edm::eventsetup::ESPreFunctorDecorator< TRecord, TFunctor >::pre().