mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-06 21:34:28 +02:00
14 lines
173 B
C++
14 lines
173 B
C++
#include "i2-base.h"
|
|
|
|
using namespace icinga;
|
|
|
|
unsigned long Object::ActiveObjects;
|
|
|
|
Object::Object(void) {
|
|
ActiveObjects++;
|
|
}
|
|
|
|
Object::~Object(void) {
|
|
ActiveObjects--;
|
|
}
|