ACE
6.4.2
|
This class automatically increments and decrements a parameterized counter. More...
#include <Auto_IncDec_T.h>
Public Member Functions | |
ACE_Auto_IncDec (ACE_SAFELY_INCREMENTABLE_DECREMENTABLE &counter) | |
Implicitly increment the counter. More... | |
~ACE_Auto_IncDec (void) | |
Implicitly decrement the counter. More... | |
void | dump (void) const |
Dump the state of an object. More... | |
Public Attributes | |
ACE_ALLOC_HOOK_DECLARE | |
Declare the dynamic allocation hooks. More... | |
Protected Attributes | |
ACE_SAFELY_INCREMENTABLE_DECREMENTABLE & | counter_ |
Private Member Functions | |
void | operator= (const ACE_Auto_IncDec< ACE_SAFELY_INCREMENTABLE_DECREMENTABLE > &) |
ACE_Auto_IncDec (const ACE_Auto_IncDec< ACE_SAFELY_INCREMENTABLE_DECREMENTABLE > &) | |
This class automatically increments and decrements a parameterized counter.
This data structure is meant to be used within a method, function, or scope. The actual parameter given for the ACE_SAFELY_INCREMENTABLE_DECREMENTABLE
template parameter must provide at least operators ++ and –.
|
inline |
Implicitly increment the counter.
|
inline |
Implicitly decrement the counter.
|
private |
void ACE_Auto_IncDec< ACE_SAFELY_INCREMENTABLE_DECREMENTABLE >::dump | ( | void | ) | const |
Dump the state of an object.
|
private |
ACE_Auto_IncDec< ACE_SAFELY_INCREMENTABLE_DECREMENTABLE >::ACE_ALLOC_HOOK_DECLARE |
Declare the dynamic allocation hooks.
|
protected |
Reference to the ACE_SAFELY_INCREMENTABLE_DECREMENTABLE
counter we're incrementing/decrementing.