File indexing completed on 2024-05-19 05:55:45

0001 /*
0002     SPDX-FileCopyrightText: 2013 Valentin Rusu <kde@rusu.info>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef _SAVEHELPER_H_
0008 #define _SAVEHELPER_H_
0009 
0010 #include <QObject>
0011 
0012 #include <KAuth/ActionReply>
0013 
0014 using namespace KAuth;
0015 
0016 class SaveHelper : public QObject
0017 {
0018     Q_OBJECT
0019 public Q_SLOTS:
0020     KAuth::ActionReply save(const QVariantMap &args);
0021 };
0022 
0023 #endif // _SAVEHELPER_H_