| 6 | Q_LOGGING_CATEGORY(category1, "test.category1") |
| 7 | |
| 8 | LoggerObject::LoggerObject(QObject *parent) : QObject(parent), |
| 9 | mCounter(0) |
| 10 | { |
| 11 | auto *timer = new QTimer(this); |
| 12 | connect(timer, &QTimer::timeout, this, &LoggerObject::onTimeout); |
| 13 | timer->start(10); |
| 14 | } |
| 15 | |
| 16 | void LoggerObject::onTimeout() |
| 17 | { |
nothing calls this directly
no outgoing calls
no test coverage detected