Counter base class.
More...
#include <counter.h>
|
static int | getTotalCounter () |
| Static getter for totaly created objects.
|
|
static int | getAliveCounter () |
| Static getter for objects alive.
|
|
static int | getWatermarkCounter () |
| Static getter for the object counter watermark.
|
|
|
| Counter () |
| Ctor.
|
|
| Counter (const Counter< T > &) |
| Copy ctor.
|
|
| ~Counter () |
| Dtor.
|
|
|
static int | total_ = 0 |
| Number of objects created. More...
|
|
static int | alive_ = 0 |
| Objects currently alive. More...
|
|
static int | watermark_ = 0 |
| Maximum of objects alive at a point in time.
|
|
template<typename T>
class Counter< T >
Counter base class.
- Invariant
- Can't be instantiated. This is forced by a protected ctor.
◆ alive_
Objects currently alive.
Target is to have 0 at programm exit.
◆ total_
Number of objects created.
Indented for performance analysis.
The documentation for this class was generated from the following file: