File indexing completed on 2025-01-05 04:35:36

0001 /*
0002     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0003     SPDX-FileCopyrightText: 2020 Harald Sitter <sitter@kde.org>
0004 */
0005 
0006 #ifndef AUTHHELPER_H
0007 #define AUTHHELPER_H
0008 
0009 #include <KAuth/ActionReply>
0010 
0011 using namespace KAuth;
0012 
0013 class AuthHelper: public QObject
0014 {
0015     Q_OBJECT
0016 public Q_SLOTS:
0017     ActionReply isuserknown(const QVariantMap &args);
0018     ActionReply createuser(const QVariantMap &args);
0019     ActionReply addtogroup(const QVariantMap &args);
0020 };
0021 
0022 #endif // AUTHHELPER_H