mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-18 17:40:48 +02:00
27 lines
434 B
C
27 lines
434 B
C
|
#ifndef GENERATORPROGRESS_H
|
||
|
#define GENERATORPROGRESS_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include "../lib/LoadProgress.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class GeneratorProgress;
|
||
|
}
|
||
|
|
||
|
class GeneratorProgress : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit GeneratorProgress(Load::Progress & source, QWidget *parent = nullptr);
|
||
|
~GeneratorProgress();
|
||
|
|
||
|
void update();
|
||
|
|
||
|
private:
|
||
|
Ui::GeneratorProgress *ui;
|
||
|
Load::Progress & source;
|
||
|
};
|
||
|
|
||
|
#endif // GENERATORPROGRESS_H
|