This is Unofficial EPICS BASE Doxygen Site
boolFlagManager Class Reference

#include "syncGroup.h"

Public Member Functions

 boolFlagManager (bool &flag)
 
 ~boolFlagManager ()
 
void release ()
 

Detailed Description

Definition at line 217 of file syncGroup.h.

Constructor & Destructor Documentation

boolFlagManager::boolFlagManager ( bool &  flag)
inline

Definition at line 226 of file syncGroup.h.

226  :
227  pBool ( & flagIn )
228 {
229  *this->pBool = true;
230 }
boolFlagManager::~boolFlagManager ( )
inline

Definition at line 232 of file syncGroup.h.

233 {
234  if ( this->pBool ) {
235  *this->pBool = false;
236  }
237 }

Member Function Documentation

void boolFlagManager::release ( )
inline

Definition at line 239 of file syncGroup.h.

240 {
241  this->pBool = 0;
242 }

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