Kryptostack
counter.h
Go to the documentation of this file.
1
17#pragma once
18
22template <typename T>
23class Counter {
24 static inline int total_ = 0,
25 alive_ = 0,
28protected:
31 total_++;
32 if( ++alive_ > watermark_ )
34 }
35
37 Counter( const Counter<T> & /* unused*/ ) {
38 total_++;
39 if( ++alive_ > watermark_ )
41 }
42
45
46public:
47 // Delete the remaining ctors, until we need them.
48 Counter<T> & operator=( const Counter<T> & /* unused*/ ) = delete;
49 Counter( Counter<T> && /* unused*/ ) = delete;
50 Counter<T> & operator=( Counter<T> && /* unused*/ ) = delete;
51
52public: /* accessor */
54 static int getTotalCounter() { return total_; }
55
57 static int getAliveCounter() { return alive_; }
58
60 static int getWatermarkCounter() { return watermark_; }
61};
Counter base class.
Definition: counter.h:23
static int watermark_
Maximum of objects alive at a point in time.
Definition: counter.h:26
Counter()
Ctor.
Definition: counter.h:30
~Counter()
Dtor.
Definition: counter.h:44
static int getAliveCounter()
Static getter for objects alive.
Definition: counter.h:57
static int alive_
Objects currently alive.
Definition: counter.h:25
Counter(const Counter< T > &)
Copy ctor.
Definition: counter.h:37
static int getTotalCounter()
Static getter for totaly created objects.
Definition: counter.h:54
static int getWatermarkCounter()
Static getter for the object counter watermark.
Definition: counter.h:60
static int total_
Number of objects created.
Definition: counter.h:24