1 /*
2     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
3     SPDX-FileCopyrightText: 2020 Harald Sitter <sitter@kde.org>
4 */
5 
6 #ifndef AUTHHELPER_H
7 #define AUTHHELPER_H
8 
9 #include <KAuth>
10 
11 using namespace KAuth;
12 
13 class AuthHelper: public QObject
14 {
15     Q_OBJECT
16 public Q_SLOTS:
17     ActionReply isuserknown(const QVariantMap &args);
18     ActionReply createuser(const QVariantMap &args);
19     ActionReply addtogroup(const QVariantMap &args);
20 };
21 
22 #endif // AUTHHELPER_H
23