mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
17 lines
291 B
C++
17 lines
291 B
C++
#pragma once
|
|
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QUrl>
|
|
|
|
class RiaFileDownloader : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit RiaFileDownloader( QObject* parent = nullptr );
|
|
|
|
void downloadFile( const QUrl& url, const QString& filePath );
|
|
signals:
|
|
void done();
|
|
};
|