mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
23 lines
462 B
C++
Executable file
23 lines
462 B
C++
Executable file
#ifndef FVUPDATEDOWNLOADPROGRESS_H
|
|
#define FVUPDATEDOWNLOADPROGRESS_H
|
|
|
|
#include <QWidget>
|
|
#include "ui_fvupdatedownloadprogress.h"
|
|
|
|
class FvUpdateDownloadProgress : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
FvUpdateDownloadProgress(QWidget *parent = 0);
|
|
~FvUpdateDownloadProgress();
|
|
|
|
public slots:
|
|
void downloadProgress ( qint64 bytesReceived, qint64 bytesTotal );
|
|
void close();
|
|
|
|
private:
|
|
Ui::FvUpdateDownloadProgress ui;
|
|
};
|
|
|
|
#endif // FVUPDATEDOWNLOADPROGRESS_H
|