#include <uInputQueue.h>
Public Member Functions | |
uInputScrambler () | |
constructor initializing input record scrambling | |
~uInputScrambler () | |
destructor deinitializing input record scrambling | |
Static Public Member Functions | |
static bool | Scrambled () |
Static Private Attributes | |
static int | scrambled_ = 0 |
Definition at line 49 of file uInputQueue.h.
uInputScrambler::uInputScrambler | ( | ) |
constructor initializing input record scrambling
Definition at line 241 of file uInputQueue.cpp.
References scrambled_.
00242 { 00243 scrambled_ ++; 00244 }
uInputScrambler::~uInputScrambler | ( | ) |
destructor deinitializing input record scrambling
Definition at line 246 of file uInputQueue.cpp.
References scrambled_.
00247 { 00248 --scrambled_; 00249 }
bool uInputScrambler::Scrambled | ( | ) | [static] |
Definition at line 251 of file uInputQueue.cpp.
References scrambled_.
Referenced by EventArchiver< Archiver >::ArchiveKey().
00252 { 00253 return scrambled_ > 0; 00254 }
int uInputScrambler::scrambled_ = 0 [static, private] |
Definition at line 51 of file uInputQueue.h.
Referenced by Scrambled(), uInputScrambler(), and ~uInputScrambler().