| 22 | |
| 23 | static Q_LOGGING_CATEGORY(log, "WOL") |
| 24 | CArp::CArp(QObject *parent) : QObject(parent) |
| 25 | { |
| 26 | qDebug(log) << Q_FUNC_INFO; |
| 27 | |
| 28 | m_Timer.setInterval(1000); |
| 29 | bool check = connect(&m_Timer, SIGNAL(timeout()), |
| 30 | this, SLOT(slotProcess())); |
| 31 | Q_ASSERT(check); |
| 32 | } |
| 33 | |
| 34 | CArp::~CArp() |
| 35 | { |
nothing calls this directly
no outgoing calls
no test coverage detected