File indexing completed on 2024-04-21 05:33:27

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