CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Private Attributes
edm::InputSource::SourceSentry Class Reference

#include <InputSource.h>

Public Types

typedef signalslot::Signal< void()> Sig
 

Public Member Functions

SourceSentryoperator= (SourceSentry const &)=delete
 
 SourceSentry (Sig &pre, Sig &post)
 
 SourceSentry (SourceSentry const &)=delete
 
 ~SourceSentry ()
 

Private Attributes

Sigpost_
 

Detailed Description

Definition at line 256 of file InputSource.h.

Member Typedef Documentation

Definition at line 258 of file InputSource.h.

Constructor & Destructor Documentation

edm::InputSource::SourceSentry::SourceSentry ( Sig pre,
Sig post 
)

Definition at line 616 of file InputSource.cc.

616  : post_(post) {
617  pre();
618  }
edm::InputSource::SourceSentry::~SourceSentry ( )

Definition at line 620 of file InputSource.cc.

620  {
621  post_();
622  }
edm::InputSource::SourceSentry::SourceSentry ( SourceSentry const &  )
delete

Member Function Documentation

SourceSentry& edm::InputSource::SourceSentry::operator= ( SourceSentry const &  )
delete

Member Data Documentation

Sig& edm::InputSource::SourceSentry::post_
private

Definition at line 266 of file InputSource.h.