1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-01-26 08:36:40 +00:00
UTPass/plugins/Utils/utils.h

22 lines
349 B
C
Raw Normal View History

2019-09-20 21:29:39 +02:00
#ifndef UTILS_H
#define UTILS_H
#include <QObject>
#include <QUrl>
#include <QQuickWindow>
class Utils : public QObject
{
Q_OBJECT
public:
Utils();
~Utils() override = default;
Q_INVOKABLE bool unzip(QUrl zip_url, QString dir_out);
Q_INVOKABLE bool rmFile(QUrl file_url);
Q_INVOKABLE bool rmDir(QUrl dir_url);
};
#endif