File: authhelper.h

package info (click to toggle)
kdenetwork-filesharing 4%3A20.12.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,892 kB
  • sloc: cpp: 993; xml: 107; makefile: 3; sh: 1
file content (22 lines) | stat: -rw-r--r-- 496 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
    SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
    SPDX-FileCopyrightText: 2020 Harald Sitter <sitter@kde.org>
*/

#ifndef AUTHHELPER_H
#define AUTHHELPER_H

#include <KAuth>

using namespace KAuth;

class AuthHelper: public QObject
{
    Q_OBJECT
public Q_SLOTS:
    ActionReply isuserknown(const QVariantMap &args);
    ActionReply createuser(const QVariantMap &args);
    ActionReply addtogroup(const QVariantMap &args);
};

#endif // AUTHHELPER_H