#include <AtomicCount.h>
Inheritance diagram for ZThread::AtomicCount:
Public Member Functions | |
AtomicCount () | |
Create a new AtomicCount, initialized to a value of 1. | |
~AtomicCount () | |
Destroy a new AtomicCount. | |
size_t | operator-- (int) |
Postfix decrement and return the current value. | |
size_t | operator++ (int) |
Postfix increment and return the current value. | |
size_t | operator-- () |
Prefix decrement and return the current value. | |
size_t | operator++ () |
Prefix increment and return the current value. |