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

Member Typedef Documentation

Definition at line 271 of file InputSource.h.

Constructor & Destructor Documentation

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

Definition at line 601 of file InputSource.cc.

601  : post_(post) {
602  pre();
603  }
edm::InputSource::SourceSentry::~SourceSentry ( )

Definition at line 605 of file InputSource.cc.

605  {
606  post_();
607  }
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 279 of file InputSource.h.