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 271 of file InputSource.h.

Member Typedef Documentation

Definition at line 273 of file InputSource.h.

Constructor & Destructor Documentation

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

Definition at line 606 of file InputSource.cc.

606  : post_(post) {
607  pre();
608  }
edm::InputSource::SourceSentry::~SourceSentry ( )

Definition at line 610 of file InputSource.cc.

610  {
611  post_();
612  }
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 281 of file InputSource.h.