mirror of
https://github.com/Icinga/icinga2.git
synced 2026-02-03 20:40:17 -05:00
13 lines
173 B
C++
13 lines
173 B
C++
#include "i2-base.h"
|
|
|
|
using namespace icinga;
|
|
|
|
unsigned long Object::ActiveObjects;
|
|
|
|
Object::Object(void) {
|
|
ActiveObjects++;
|
|
}
|
|
|
|
Object::~Object(void) {
|
|
ActiveObjects--;
|
|
}
|