| 3 | #include <QTimer> |
| 4 | |
| 5 | LoggerObjectPrio::LoggerObjectPrio(QObject *parent) : QObject(parent) |
| 6 | { |
| 7 | auto *timer = new QTimer(this); |
| 8 | connect(timer, &QTimer::timeout, this, &LoggerObjectPrio::onTimeout); |
| 9 | timer->start(1); |
| 10 | } |
| 11 | |
| 12 | void LoggerObjectPrio::onTimeout() |
| 13 | { |
nothing calls this directly
no outgoing calls
no test coverage detected