Solid

dummyinhibition.h
1/*
2 SPDX-FileCopyrightText: 2014 Alejandro Fiestas Olivares <afiestas@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
5*/
6
7#ifndef SOLID_DUMMY_INHIBITION_H
8#define SOLID_DUMMY_INHIBITION_H
9
10#include "backends/abstractinhibition.h"
11#include "inhibition.h"
12#include "solid/power.h"
13
14#include <qglobal.h>
15
16namespace Solid
17{
18class DummyInhibitionJob;
19class DummyInhibition : public AbstractInhibition
20{
22public:
23 explicit DummyInhibition(QObject *parent = nullptr);
24 virtual ~DummyInhibition();
25
26 void start() override;
27 void stop() override;
28 Inhibition::State state() const override;
29
30 Power::InhibitionTypes inhibitions;
31 QString description;
32 Inhibition::State m_state;
33};
34}
35
36#endif // SOLID_DUMMY_INHIBITION_H
The single responsibility of this class is to create arguments valid for logind Inhibit call.
Definition fakebattery.h:16
Q_OBJECTQ_OBJECT
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:17:12 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.