#include <counter.h>
Public Member Functions | |
| Counter () | |
| Construct and initialize a counter to zero. | |
| Counter (const Counter &counter) | |
| Construct a counter with an initial value set for another counter. | |
| Counter (T initial) | |
| Construct a counter with an initial value of the specified data type. | |
| T & | operator= (T c) |
| operator T () | |
Protected Attributes | |
| T | count |
Each time the object is accessed, the underlying counted data type is incremented.
|
|||||||||
|
Construct and initialize a counter to zero.
|
|
||||||||||
|
Construct a counter with an initial value set for another counter.
|
|
||||||||||
|
Construct a counter with an initial value of the specified data type.
|
|
|||||||||
|
|
|
||||||||||
|
|
|
|||||
|
|
1.3.9.1