File indexing completed on 2024-04-28 05:45:39

0001 // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0002 // SPDX-FileCopyrightText: 2022 Harald Sitter <sitter@kde.org>
0003 
0004 #pragma once
0005 
0006 #include <KAuth/ActionReply>
0007 
0008 class INotifySurveyHelper : public QObject
0009 {
0010     Q_OBJECT
0011 public:
0012     using QObject::QObject;
0013 public Q_SLOTS:
0014     KAuth::ActionReply increaseinstancelimit(const QVariantMap &args);
0015     KAuth::ActionReply increasewatchlimit(const QVariantMap &args);
0016 };