You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
313 B
23 lines
313 B
#ifndef LOADINGDIALOG_H
|
|
#define LOADINGDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class LoadingDialog;
|
|
}
|
|
|
|
class LoadingDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit LoadingDialog(QWidget *parent = nullptr);
|
|
~LoadingDialog();
|
|
|
|
private:
|
|
Ui::LoadingDialog *ui;
|
|
};
|
|
|
|
#endif // LOADINGDIALOG_H
|