File indexing completed on 2025-01-19 12:48:14
0001 /* This file is part of the KDE libraries 0002 * SPDX-FileCopyrightText: 2009 Dario Freddi <drf at kde.org> 0003 * 0004 * SPDX-License-Identifier: LGPL-2.1-or-later 0005 */ 0006 0007 #include "abstractsystempoller.h" 0008 0009 AbstractSystemPoller::AbstractSystemPoller(QObject *parent) 0010 : QObject(parent) 0011 { 0012 } 0013 0014 AbstractSystemPoller::~AbstractSystemPoller() 0015 { 0016 } 0017 0018 #include "moc_abstractsystempoller.cpp"