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

0001 /*
0002  *  SPDX-FileCopyrightText: 2016 Marco Martin <mart@kde.org>
0003  *  SPDX-FileCopyrightText: 1998 Luca Montecchiani <m.luca@usa.net>
0004  *
0005  *  SPDX-License-Identifier: GPL-2.0-or-later
0006  *
0007  */
0008 #ifndef PLYMOUTH_HELPER_H
0009 #define PLYMOUTH_HELPER_H
0010 
0011 #include <KAuth/ActionReply>
0012 
0013 using namespace KAuth;
0014 
0015 class PlymouthHelper : public QObject
0016 {
0017     Q_OBJECT
0018 
0019 public Q_SLOTS:
0020     ActionReply save(const QVariantMap &map);
0021     ActionReply install(const QVariantMap &args);
0022     ActionReply uninstall(const QVariantMap &args);
0023 };
0024 
0025 #endif