File indexing completed on 2024-05-12 04:01:53

0001 /*
0002     SPDX-FileCopyrightText: 2014 Alejandro Fiestas Olivares <afiestas@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #ifndef SOLID_DUMMY_POWER_NOTIFIER_H
0008 #define SOLID_DUMMY_POWER_NOTIFIER_H
0009 
0010 #include "backends/powernotifier.h"
0011 
0012 namespace Solid
0013 {
0014 class DummyPowerNotifier : public PowerNotifier
0015 {
0016     Q_OBJECT
0017 public:
0018     explicit DummyPowerNotifier(QObject *parent = nullptr);
0019 
0020 private Q_SLOTS:
0021     void emitEverythingChanged();
0022 };
0023 }
0024 
0025 #endif // SOLID_DUMMY_POWER_NOTIFIER_H