File indexing completed on 2024-04-21 14:43:58

0001 #pragma once
0002 
0003 #include <QObject>
0004 #include <QFile>
0005 #include <QDir>
0006 #include <QMessageBox>
0007 
0008 #include <kauth.h>
0009 
0010 using namespace KAuth;
0011 
0012 class DownloadHelper : public QObject
0013 {
0014         Q_OBJECT
0015 
0016     public Q_SLOTS:
0017         ActionReply saveindexfile(const QVariantMap &args);
0018         ActionReply removeindexfileset(const QVariantMap &args);
0019 };
0020