25 lines
328 B
C
25 lines
328 B
C
|
#ifndef PROCESS_H
|
||
|
#define PROCESS_H
|
||
|
|
||
|
#include "Qss.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class Process;
|
||
|
}
|
||
|
|
||
|
class Process : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit Process(QWidget *parent = nullptr);
|
||
|
~Process();
|
||
|
public slots:
|
||
|
void on_percent(int);
|
||
|
void on_done_close();
|
||
|
private:
|
||
|
Ui::Process *ui;
|
||
|
};
|
||
|
|
||
|
#endif // PROCESS_H
|