File indexing completed on 2024-04-28 05:36:15

0001 /*
0002  * SPDX-FileCopyrightText: 2020 Kai Uwe Broulik <kde@broulik.de>
0003  *
0004  * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005  */
0006 
0007 #pragma once
0008 
0009 #include <QObject>
0010 
0011 #include <KAuth/ActionReply>
0012 
0013 using namespace KAuth;
0014 
0015 class ChargeThresholdHelper : public QObject
0016 {
0017     Q_OBJECT
0018 public:
0019     explicit ChargeThresholdHelper(QObject *parent = nullptr);
0020 
0021 public Q_SLOTS:
0022     ActionReply getthreshold(const QVariantMap &args);
0023     ActionReply setthreshold(const QVariantMap &args);
0024 };